forked from tokio-rs/loom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (35 loc) · 1.02 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
[package]
name = "loom"
# When releasing to crates.io:
# - Update version number
# - lib.rs: html_root_url.
# - README.md
# - Update CHANGELOG.md
# - Update doc URL.
# - Cargo.toml
# - README.md
# - Create git tag
version = "0.3.0"
edition = "2018"
license = "MIT"
authors = ["Carl Lerche <[email protected]>"]
description = "Permutation testing for concurrent code"
documentation = "https://docs.rs/loom/0.3.0/loom"
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"]
[features]
default = []
checkpoint = ["serde", "serde_json"]
futures = ["futures-util"]
[dependencies]
cfg-if = "0.1.6"
scoped-tls = "0.1.2"
# Provides a generator based runtime
generator = "0.6.18"
# Requires for "checkpoint" feature
serde = { version = "1.0.92", features = ["derive"], optional = true }
serde_json = { version = "1.0.33", optional = true }
futures-util = { version = "0.3.0", optional = true }