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

Commit

Permalink
Only export non-bounded types at the top level
Browse files Browse the repository at this point in the history
  • Loading branch information
KiChjang committed Jan 29, 2023
1 parent 293d03e commit eeed0c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion primitives/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ pub use self::hasher::keccak::KeccakHasher;
pub use hash_db::Hasher;

pub use bounded_collections as bounded;
pub use bounded_collections::*;
#[cfg(feature = "std")]
pub use bounded_collections::{bounded_btree_map, bounded_vec};
pub use bounded_collections::{parameter_types, Get, GetDefault, TryCollect, TypedGet};
pub use sp_storage as storage;

#[doc(hidden)]
Expand Down

0 comments on commit eeed0c0

Please sign in to comment.