File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 8
8
//!
9
9
//! ## Features
10
10
//!
11
- //! * **Zero unsafe code.** This library uses `#![deny (unsafe_code)]` and was motivated by
11
+ //! * **Zero unsafe code.** This library uses `#![forbid (unsafe_code)]` and was motivated by
12
12
//! the complexity and amount of memory errors present in many alternatives.
13
13
//!
14
14
//! * **Intuitive API.** Uses similar or same methods as `std` when possible.
95
95
//! Unless you explicitly state otherwise, any contribution intentionally submitted
96
96
//! for inclusion in `sharded` by you, as defined in the Apache-2.0 license, shall be
97
97
//! dual licensed as above, without any additional terms or conditions.
98
- #![ deny ( unsafe_code) ]
98
+ #![ forbid ( unsafe_code) ]
99
99
100
100
use hashbrown:: raw:: { RawIntoIter , RawTable } ;
101
101
use parking_lot:: { MappedRwLockReadGuard , RwLock , RwLockReadGuard } ;
You can’t perform that action at this time.
0 commit comments