-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
43 lines (37 loc) · 1.13 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
[package]
name = "tallystick"
version = "0.4.3"
authors = ["phayes <[email protected]>"]
edition = "2018"
description = "tallystick is a rust library for talling votes"
license = "MIT OR Apache-2.0"
repository = "https://github.com/phayes/tallystick"
readme = "README.md"
keywords = ["voting", "vote", "election", "tally", "ballot"]
categories = ["science"]
[badges]
travis-ci = { repository = "phayes/tallystick", branch = "master" }
codecov = { repository = "phayes/tallystick", branch = "master", service = "github" }
maintenance = { status = "actively-developed" }
[features]
default = ["nightly", "serde"]
nightly = []
rational = ["num-rational"]
[package.metadata.docs.rs]
features = ["nightly", "rational", "serde"]
[dependencies]
failure = "0.1.6"
petgraph = { default-features = false, version = "0.6.0" }
derive_more = "0.99.3"
num-traits = "0.2.11"
num-rational = { optional = true, version = "0.4.0" }
hashbrown = "0.11.2"
partial-min-max = "0.4"
serde = { optional = true, version = "1.0", features = ["derive"] }
[dev-dependencies]
criterion = "0.2"
rand = "0.7.3"
maplit = "1.0.2"
[[bench]]
name = "benchmark"
harness = false