-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (28 loc) · 862 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
34
35
36
[package]
name = "timrcv"
version = "0.3.0"
edition = "2021"
# author = ["Tim Hunter <tjhunter@cs.stanford.edu>"]
readme = "README.md"
repository = "https://github.com/tjhunter/timrcv"
description = "Tabulating program and library for all common voting format."
categories = ["science"]
keywords = ["irv", "tally", "election", "voting", "vote", "ballot"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
[[bin]]
name = "timrcv"
path = "src/main.rs"
[dependencies]
ranked_voting = { path = "ranked_voting" }
log = "0.4"
env_logger = "0.9"
calamine = "0.18"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
text-diff = "0.4"
clap = { version = "3.2.20", features = ["derive"] }
snafu = "0.7"
csv = "1.1"
# dev
# datatest = "0.7.1" #would be nice but is not in rust stable yet