lib.rs (442B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 pub use hashbrown::*; 5 6 // `hashbrown` 0.15.0 moved `DefaultHashBuilder` from the `hash_map` module to the root, so let's 7 // "undo" that. 8 pub mod hash_map { 9 pub use hashbrown::hash_map::*; 10 pub use hashbrown::DefaultHashBuilder; 11 }