Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit eeed0c0

Browse files
committed
Only export non-bounded types at the top level
1 parent 293d03e commit eeed0c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

primitives/core/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ pub use self::hasher::keccak::KeccakHasher;
8181
pub use hash_db::Hasher;
8282

8383
pub use bounded_collections as bounded;
84-
pub use bounded_collections::*;
84+
#[cfg(feature = "std")]
85+
pub use bounded_collections::{bounded_btree_map, bounded_vec};
86+
pub use bounded_collections::{parameter_types, Get, GetDefault, TryCollect, TypedGet};
8587
pub use sp_storage as storage;
8688

8789
#[doc(hidden)]

0 commit comments

Comments
 (0)