-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 981 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
description = """
An implementation of Craig and, indenpendently, Magnussen, Landin, and
Hagersten queue lock for mutual exclusion, referred to as CLH lock.
"""
name = "clhlock"
version = "0.2.2"
edition = "2021"
# NOTE: Rust 1.65 is required for GATs and let-else statements.
rust-version = "1.65.0"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/clhlock"
repository = "https://github.com/pedromfedricci/clhlock"
authors = ["Pedro de Matos Fedricci <[email protected]>"]
categories = ["algorithms", "concurrency", "no-std"]
keywords = ["mutex", "no_std", "spinlock", "synchronization"]
[features]
# NOTE: Feature `yield` requires std.
yield = []
[target.'cfg(loom)'.dev-dependencies.loom]
version = "0.7"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ["cfg(tarpaulin)", "cfg(tarpaulin_include)", "cfg(loom)", "cfg(ignore_leaks)"]