-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (55 loc) · 1.41 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
[package]
name = "ioqp"
version = "0.1.0"
authors = ["Joel Mackenzie <joel.m.mackenzie@gmail.com>"]
edition = "2018"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.41"
bincode = "1.3.3"
bitpacking = "0.8.4"
byteorder = "1.4.3"
indicatif = { version = "0.16.2", features = ["rayon"] }
rayon = "1.5.1"
serde = { version = "1.0.126", features = ["derive"] }
serde_bytes = "0.11.5"
smallvec = { version = "1.6.1", features = ["serde"] }
streamvbyte = "0.1.1"
structopt = "0.3.21"
tracing = "0.1.26"
tracing-appender = "0.2.2"
axum = { version = "0.5" }
tokio = { version = "1.17.0", features = ["full"] }
tower = { version = "0.4", features = ["util"] }
serde_json = "1.0.79"
parking_lot = "0.12.0"
ordered-float = "2.0"
twox-hash = "1.6.2"
bytes = "1.1"
prost = "0.10"
memmap2 = "0.5.3"
tracing-subscriber = "0.3"
url = "2.2.2"
reqwest = { version = "0.11.10", features = ["json"] }
governor = "0.4.2"
futures = { version = "0.3.21" }
[build-dependencies]
# Note from v0.11 `protoc` is no longer bundled with prost
# https://docs.rs/prost/0.11.0/prost/index.html#protoc
prost-build = "0.10"
anyhow = "1.0.41"
[dev-dependencies]
quickcheck = "1"
quickcheck_macros = "1"
criterion = "0.3"
rand = "0.8"
[[bench]]
name = "decode"
harness = false
[[bench]]
name = "determine_max"
harness = false
[profile.release]
debug = true
panic = "abort"