-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 756 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 756 Bytes
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
[workspace]
members = ["stress-test","bench"]
[package]
name = "rendezvous"
version = "0.1.0"
edition = "2021"
authors = ["Arthur Carcano"]
description = """A high-efficiency adaptive barrier (aka. waitgroup) implemented using
atomics and futexes instead of condvar and mutexes."""
readme = "README.md"
repository = "https://github.com/krtab/rendezvous"
license = "MIT"
exclude = [
".github",
"rustfmt.toml",
"deny.toml",
"!resources/red-iron.png",
]
categories = ["concurrency", "algorithms"]
keywords = ["barrier", "sync", "atomic", "adaptive", "waitgroup"]
autobenches = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
atomic-wait = "1.1.0"
cache-padded = "1.2.0"