forked from crossbeam-rs/crossbeam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (53 loc) · 1.49 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
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "crossbeam"
# When publishing a new version:
# - Update CHANGELOG.md
# - Update README.md
# - Create "crossbeam-X.Y.Z" git tag
version = "0.7.1"
authors = ["The Crossbeam Project Developers"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/crossbeam-rs/crossbeam"
homepage = "https://github.com/crossbeam-rs/crossbeam"
documentation = "https://docs.rs/crossbeam"
description = "Tools for concurrent programming"
keywords = ["atomic", "garbage", "non-blocking", "lock-free", "rcu"]
categories = ["concurrency", "memory-management", "data-structures", "no-std"]
exclude = ["/ci/*", "/.travis.yml", "/bors.toml"]
[badges]
travis-ci = { repository = "crossbeam-rs/crossbeam" }
[features]
default = ["std"]
nightly = ["crossbeam-epoch/nightly", "crossbeam-utils/nightly"]
std = ["crossbeam-epoch/std", "crossbeam-utils/std"]
[dependencies]
cfg-if = "0.1"
[dependencies.crossbeam-channel]
version = "0.3.7"
path = "./crossbeam-channel"
[dependencies.crossbeam-deque]
version = "0.7.0"
path = "./crossbeam-deque"
[dependencies.crossbeam-epoch]
version = "0.7.1"
path = "./crossbeam-epoch"
[dependencies.crossbeam-queue]
version = "0.1.0"
path = "./crossbeam-queue"
[dependencies.crossbeam-utils]
version = "0.6.5"
path = "./crossbeam-utils"
[dev-dependencies]
rand = "0.6"
[workspace]
members = [
".",
"crossbeam-channel",
"crossbeam-channel/benchmarks",
"crossbeam-deque",
"crossbeam-epoch",
"crossbeam-queue",
"crossbeam-skiplist",
"crossbeam-utils",
]