-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 1.02 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
[package]
name = "clairvoyance"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
memchr = "2.3.4"
heim = { version = "0.1.0-rc.1", features = ["full"] }
bincode = "2.0.0-rc.2"
tokio = { version = "1", features = ["full", "parking_lot"] }
once_cell = "^1"
anyhow = "1.0"
smallvec = { version = "1.7", features = ["write", "const_new", "union", "may_dangle"] }
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
pin-utils = "0.1.0"
log = "0.4"
fern = "0.6.0"
byte-unit = { version = "4.0.13", default-features = false, features = ["std", "serde"] }
cfg-if = "1.0.0"
num_cpus = "1"
chrono = "0.4"
argh = "0.1"
parse_duration = "2.1.1"
plotters = { version = "0.3.1", default-features = false, features = ["svg_backend", "line_series"] }
integer-encoding = { version = "3.0.2", features = ["tokio_async"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[profile.release]
strip = true