-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (40 loc) · 1.23 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
47
48
49
50
51
[package]
name = "electrologica"
version = "0.3.0"
edition = "2021"
authors = ["0xAlcibiades <[email protected]"]
homepage = "https://github.com/warlock-labs/electrologica"
repository = "https://github.com/warlock-labs/electrologica"
license = "Apache-2.0"
readme = "README.md"
categories = ["concurrency", "data-structures", "algorithms", "mathematics"]
description = "High performance concurrent primitives for Rust."
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = { version = "0.6", optional = true }
[[bench]]
name = "atomic_ring"
harness = false
[[bench]]
name = "rayon_atomic_semaphore"
harness = false
[lib]
path = "src/lib.rs"
[dependencies]
crossbeam-utils = "0.8.20"
pprof = { version = "0.13.0", features = ["flamegraph"], optional = true }
rayon = { version = "1.5.1", optional = true}
[dev-dependencies]
once_cell = "1.20.2"
rayon = "1.10.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
criterion = { version = "0.5.1", features = ["async_tokio"] }
tokio = { version = "1.0", features = ["full"] }
num_cpus = "1.13"
approx = "0.5.1"
[features]
default = []
dev-profiling = ["pprof"]
jemalloc = ["tikv-jemallocator"]
[package.metadata.docs.rs]
rayon = ["rayon"]