-
Notifications
You must be signed in to change notification settings - Fork 112
/
Cargo.toml
48 lines (40 loc) · 1.22 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
[package]
name = "loom"
# When releasing to crates.io:
# - Update version number
# - README.md
# - src/lib.rs
# - Update CHANGELOG.md
# - Create git tag
version = "0.7.2"
edition = "2018"
license = "MIT"
authors = ["Carl Lerche <[email protected]>"]
description = "Permutation testing for concurrent code"
homepage = "https://github.com/tokio-rs/loom"
repository = "https://github.com/tokio-rs/loom"
readme = "README.md"
keywords = ["atomic", "lock-free"]
categories = ["concurrency", "data-structures"]
rust-version = "1.65"
[features]
default = []
checkpoint = ["serde", "serde_json"]
futures = ["pin-utils"]
[dependencies]
cfg-if = "1.0.0"
scoped-tls = "1.0.0"
# Provides a generator based runtime
generator = "0.8.1"
# Requires for "checkpoint" feature
serde = { version = "1.0.92", features = ["derive"], optional = true }
serde_json = { version = "1.0.33", optional = true }
# Requires for "futures" feature
pin-utils = { version = "0.1.0", optional = true }
tracing = { version = "0.1.27", default-features = false, features = ["std"] }
tracing-subscriber = { version = "0.3.8", features = ["env-filter"] }
[dev-dependencies]
futures-util = "0.3.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]