Crates.io | darc |
lib.rs | darc |
version | 0.0.2 |
source | src |
created_at | 2019-04-29 21:21:10.712279 |
updated_at | 2023-07-11 22:52:47.094542 |
description | Dynamically-atomic reference-counting pointers (proof of concept) |
homepage | |
repository | https://github.com/cuviper/darc |
max_upload_size | |
id | 131073 |
size | 25,154 |
This is a proof of concept of a Rust Rc<T>
type that can dynamically choose
whether to use atomic access to update its reference count. A related Arc<T>
can be created which offers thread-safe (Send + Sync
) access to the same
data. If there's never an Arc
, the Rc
never pays the price for atomics.
darc
currently requires rustc 1.31.0
or greater.
Licensed under either of
at your option.
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.