forked from LukasKalbertodt/atomig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (27 loc) · 921 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
33
34
35
36
[package]
name = "atomig"
version = "0.4.0"
authors = ["Lukas Kalbertodt <[email protected]>"]
edition = "2021"
description = """
Generic, convenient and lock-free `std` atomics via `Atomic<T>`. Can be used
with many primitive types (including floats) and with custom types.
"""
documentation = "https://docs.rs/atomig/"
repository = "https://github.com/LukasKalbertodt/atomig/"
readme = "README.md"
license = "MIT/Apache-2.0"
keywords = ["atomic", "atom", "ordering", "cas", "generic"]
categories = ["concurrency", "hardware-support", "no-std"]
[features]
derive = ["atomig-macro"]
[dependencies]
atomig-macro = { version = "=0.3.0", path = "atomig-macro", optional = true }
serde = { version = "1", default-features = false, optional = true }
[dev-dependencies]
bincode = { version = "1" }
[package.metadata.docs.rs]
all-features = true
[[example]]
name = "custom_type"
required-features = ["derive"]