forked from sslab-gatech/Rudra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (40 loc) · 855 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
37
38
39
40
41
42
43
44
45
46
[package]
name = "rudra"
version = "0.1.0"
authors = ["Yechan Bae <[email protected]>"]
default-run = "rudra"
edition = "2021"
exclude = ["samples"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
test = true
doctest = false
[[bin]]
name = "rudra"
test = false
doctest = false
[[bin]]
name = "cargo-rudra"
test = false
doctest = false
[dependencies]
cargo_metadata = "0.11"
chrono = "0.4"
dashmap = "3.11"
fern = "0.6.0"
if_chain = "1.0"
log = "0.4"
maplit = "1.0.2"
once_cell = "1.5.2"
parking_lot = "0.11"
rustc_version = "0.2.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.56"
snafu = "0.6"
termcolor = "1.1.2"
toml = "0.5.6"
wait-timeout = "0.2"
bitflags = "1.2.1"
which = "4.0"
[features]
backtraces = ["snafu/backtraces", "snafu/backtraces-impl-backtrace-crate"]