9 releases

0.4.0 Apr 8, 2023
0.3.2 Jan 4, 2021
0.3.1 Nov 24, 2020
0.2.1 Jul 10, 2020
0.1.2 Aug 20, 2019

#351 in Concurrency

Download history 5633/week @ 2024-01-03 4349/week @ 2024-01-10 5736/week @ 2024-01-17 4707/week @ 2024-01-24 5403/week @ 2024-01-31 5945/week @ 2024-02-07 6093/week @ 2024-02-14 6541/week @ 2024-02-21 5465/week @ 2024-02-28 7444/week @ 2024-03-06 7093/week @ 2024-03-13 5733/week @ 2024-03-20 6400/week @ 2024-03-27 6174/week @ 2024-04-03 5146/week @ 2024-04-10 4907/week @ 2024-04-17

23,622 downloads per month
Used in 16 crates (11 directly)

MIT/Apache

64KB
921 lines

conquer-once

Synchronization primitives for lazy and one-time initialization using low-level blocking mechanisms with clear distinction between blocking and non-blocking methods and additional support for #[no_std] environments when using spin-locks.

Build Status Latest version Documentation License Rust 1.36+

Usage

To use this crate, add the following to your Cargo.toml

[dependencies]
conquer-once = "0.4.0"

Minimum Supported Rust Version (MSRV)

The minimum supported Rust version for this crate is 1.49.0.

Cargo Features

By default, conquer-once enables the std feature. With this feature enabled, the crate exports the Lazy, Once and OnceCell types that use an OS and standard library reliant blocking mechanism. Without this feature, the crate is #[no_std] environment compatible, but only exports the types in the crate's spin sub-module, which use spin-locks.

The feature can be disabled by specifying the dependency as follows:

[dependencies.conquer-once]
version = "0.4.0"
use-default-features = false

License

conquer-once is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT for details.

Dependencies

~37KB