-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
65 lines (57 loc) · 1.6 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "nparty"
version = "0.1.4"
authors = ["Alex Jago <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "N-Party-Preferred distribution of Australian Senate ballots and subsequent analysis."
default-run = "nparty"
rust-version = "1.70"
repository = "https://github.com/alexjago/nparty"
keywords = ["senate", "party-preferred", "psephology"]
categories = ["cli", "gui"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
csv = "1.3"
serde = "1.0.139"
serde_derive = "1.0.139"
serde_json = "1.0.82"
regex = "1.10.0"
itertools = "0.12"
zip = "0.6.2"
factorial = "0.2.1"
clap = { version = "3.0.0", features = ["color", "derive", "suggestions"] }
toml_edit = { version = "0.14.4", features = ["serde"] }
tabwriter = "1.2.1"
ron = "0.8"
url = "2.4"
ehttp = "0.3"
glob = "0.3.1"
Inflector = "0.11.4"
# anyhow = "1.0.58"
klask = { git = "https://github.com/MichalGniadek/klask" }
indexmap = { version = "1.9.1", features = ["serde-1"] }
color-eyre = { default-features = false, version = "0.6.2" }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
clap-verbosity-flag = "1.0.1"
log = "0.4.20"
string-interner = { version = "0.14.0", default-features = false, features = [
"backends",
"std",
] }
ouroboros = "0.18.0"
[profile.release]
debug = true # for flamegraph
[[bin]]
name = "nparty"
path = "src/main.rs"
[[bin]]
name = "nparty-gui"
path = "src/gui.rs"
[[bin]]
name = "speedread"
path = "src/speedread.rs"
[package.metadata.bundle.bin.nparty-gui]
name = "nparty"
identifier = "net.abjago.nparty"