aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: a6d0c8c6cd738e7c77d7be2b9ae9e7c4e2909c94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "aft"
version = "0.1.0"
authors = ["Bryan Newbold <bnewbold@robocracy.org>"]
edition = "2018"

[dependencies]
#bstr = "0.2"
serde_json = "1.0"
structopt = { version = "0.3", default-features = false }
anyhow = "1.0"
colored = "1.9"
atty = "0.2"
tabwriter = { version = "1.2", features = ["ansi_formatting"] }
chrono = "*"

[dev-dependencies]
assert_cmd = "1"

[profile.release]
lto = true
codegen-units = 1
opt-level = "z"
panic = "abort"