-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
33 lines (25 loc) · 827 Bytes
/
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
[package]
name = "threshold"
version = "0.9.1"
edition = "2018"
description = "Threshold data structures"
keywords = ["threshold", "data-structures", "vector-clock"]
readme = "README.md"
authors = ["Vitor Enes <[email protected]>"]
homepage = "https://github.com/vitorenesduarte/threshold-rs"
repository = "https://github.com/vitorenesduarte/threshold-rs.git"
documentation = "https://docs.rs/threshold"
license = "MIT/Apache-2.0"
[badges]
travis-ci = { repository = "vitorenesduarte/threshold-rs" }
coveralls = { repository = "vitorenesduarte/threshold-rs", branch = "master", service = "github" }
[dependencies]
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
criterion = "0.2"
rand = "0.7"
quickcheck = "0.8"
quickcheck_macros = "0.8"
[[bench]]
name = "threshold_bench"
harness = false