garage/Cargo.toml

40 lines
855 B
TOML
Raw Normal View History

[package]
name = "garage"
version = "0.1.0"
authors = ["Alex Auvolat <alex@adnab.me>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytes = "0.4"
http = "0.2"
2020-04-06 17:55:39 +00:00
hyper = "0.13"
2020-04-08 20:00:41 +00:00
sled = "0.31"
futures = "0.3"
futures-core = "0.3"
futures-channel = "0.3"
futures-util = "0.3"
tokio = { version = "0.2", features = ["full"] }
serde = { version = "1.0", features = ["derive", "rc"] }
serde_bytes = "0.11"
bincode = "1.2.1"
err-derive = "0.2.3"
rmp-serde = "0.14.3"
2020-04-06 17:55:39 +00:00
toml = "0.5"
structopt = { version = "0.3", default-features = false }
2020-04-06 17:55:39 +00:00
rand = "0.7"
hex = "0.3"
2020-04-06 19:02:15 +00:00
sha2 = "0.8"
2020-04-08 20:00:41 +00:00
async-trait = "0.1.30"
2020-04-08 21:01:49 +00:00
reduce = "0.1.2"
2020-04-09 16:43:53 +00:00
serde_json = "1.0"
2020-04-12 13:51:19 +00:00
rustls = "0.17"
2020-04-12 17:18:31 +00:00
tokio-rustls = "0.13"
hyper-rustls = { version = "0.20", default-features = false }
2020-04-12 13:51:19 +00:00
webpki = "0.21"
2020-04-10 20:55:01 +00:00
[profile.dev]
lto = "off"