-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
45 lines (38 loc) · 1.15 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
[package]
name = "topaz-tak"
version = "0.1.0"
authors = ["Justin Kur <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["random", "cli"]
cli = ["termtree", "colorful", "getopts", "telnet", "dotenv", "miniserde"]
random = ["rand_core", "rand_xoshiro", "getrandom", "bitintr"]
[dependencies]
anyhow = "1.0"
crossbeam-channel = "0.5"
cfg-if = "1.0.0"
instant = "0.1.12"
lazy_static = "*"
rand_core = {version = "0.6.3", optional = true}
rand_xoshiro = {version = "0.6.0", optional = true}
getrandom = {version = "*", optional = true}
termtree = {version = "0.2.3", optional = true}
colorful = {version = "0.2", optional = true}
getopts = {version = "0.2.21", optional = true}
telnet = {version = "0.2", optional = true}
dotenv = {version = "0.15.0", optional = true}
miniserde = {version = "0.1.24", optional = true}
bitintr = {version = "0.3.0", optional = true}
[profile.release]
debug = true
lto = true
[dev-dependencies]
criterion = "0.3"
[[bin]]
name = "topaz"
path = "src/topaz.rs"
required-features = ["cli"]
[[bench]]
name = "benchmark"
harness = false