forked from Distributed-EPFL/zebra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (23 loc) · 894 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
[package]
name = "tenaciouszebra"
version = "0.1.0"
authors = ["Matteo Monti <[email protected]>", "Manuel Vidigueira <[email protected]>", "Lars Barmettler <[email protected]"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "~1.0", features = [ "derive", "rc" ] }
serde_bytes = { version = "0.11.7" }
serde_json = "1.0.107"
oh-snap = { git="https://github.com/barmettlerl/oh-snap"}
talk = { git="https://github.com/barmettlerl/talk" }
doomstack = { git = "https://github.com/Distributed-EPFL/doomstack" }
rayon = { version = "1.5.1" }
bit-vec = { version = "0.6", features = ["serde"] }
bincode = { version = "1" }
rocksdb = "0.21.0"
[dev-dependencies]
rand = { version = "0.8.4" }
array-init = {version = "2.0.0"}
[profile.release]
lto = "fat"
codegen-units = 1