-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
46 lines (40 loc) · 1.26 KB
/
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
37
38
39
40
41
42
43
44
45
46
[package]
name = "triple_buffer"
#
# Release checklist:
#
# - Cross-check all public API documentation, update as needed
# - Update changelog
# - Update version number in Cargo.toml
# - Push master, make sure it passes CI
# - Cargo publish
# - Roll an annotated git tag
# - Add a github release
#
version = "8.0.0"
authors = ["Hadrien G. <knights_of_ni@gmx.com>"]
description = "An implementation of triple buffering, useful for sharing frequently updated data between threads"
documentation = "https://docs.rs/triple_buffer/"
repository = "https://github.com/HadrienG2/triple-buffer"
readme = "README.md"
keywords = [ "synchronization", "spsc", "multithreading", "non-blocking", "wait-free" ]
categories = [ "algorithms", "asynchronous", "concurrency", "data-structures" ]
license = "MPL-2.0"
edition = "2018"
rust-version = "1.74"
[badges]
maintenance = { status = "passively-maintained" }
[features]
# Adjust the test configuration (e.g. reduce problem sizes) so the tests can run
# under Miri within a reasonable time budget.
miri = []
[dependencies]
crossbeam-utils = { version = "0.8.11", default-features = false }
[dev-dependencies]
criterion = { version = "0.5", default-features = false }
testbench = "1.0"
[lib]
bench = false
[[bench]]
name = "benchmarks"
harness = false