forked from phayes/tallystick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (33 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
[package]
name = "tallystick"
version = "0.1.1"
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", "economics", "social choice", "political science"]
[badges]
travis-ci = { repository = "phayes/tallystick", branch = "master" }
codecov = { repository = "phayes/tallystick", branch = "master", service = "github" }
maintenance = { status = "actively-developed" }
[package.metadata.docs.rs]
features = ["rational"]
[features]
default = []
rational = ["num-rational"]
[dependencies]
hashbrown = "0.1.6"
failure = "0.1.3"
petgraph = {default-features = false, version = "0.4.13"}
derive_more = "0.13.0"
num-traits = "0.2.6"
num-rational = {optional = true, version = "0.2.1"}
[dev-dependencies]
criterion = "0.2"
rand = "0.6.1"
[[bench]]
name = "benchmark"
harness = false