2 releases (1 stable)
Uses old Rust 2015
1.0.0 | May 21, 2016 |
---|---|
0.1.0 | Mar 11, 2016 |
#297 in Concurrency
102,207 downloads per month
Used in 332 crates
(16 directly)
8KB
168 lines
rust-antidote
Poison-free versions of the Rust standard library Mutex
and RwLock
types.
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
lib.rs
:
Mutex and RwLock types that do not poison themselves.
These types expose identical APIs to the standard library Mutex
and
RwLock
except that they do not return PoisonError
s.