bakare/Cargo.toml

36 lines
692 B
TOML
Raw Normal View History

2018-08-17 09:58:00 +01:00
[package]
2018-10-04 15:21:34 +01:00
name = "bakare"
2018-08-17 09:58:00 +01:00
version = "0.1.0"
authors = ["Cyryl Płotnicki <cyplo@cyplo.net>"]
2018-12-22 11:31:27 +00:00
edition = "2018"
2018-12-22 11:58:37 +00:00
license = "AGPL-3.0"
2018-08-17 09:58:00 +01:00
[dependencies]
anyhow = "1.0"
async-log = "2.0"
atomicwrites = "0.2"
base64 = "0.11"
femme = "1.3"
fs2 = "0.4"
glob = "0.3"
hex = "0.4"
log = "0.4"
nix = "0.19"
rand = "0.7"
rayon = "1.1"
2018-10-04 16:11:47 +01:00
rust-crypto = "0.2"
2019-09-01 20:10:00 +01:00
serde = { version = "1.0", features = ["derive"] }
2020-11-07 10:40:32 +00:00
serde_cbor = "0.11"
serde_json = "1.0"
sha2 = "0.9"
tempfile = "3.1"
thiserror = "1.0"
uuid = { version = "0.8", features = ["v4"] }
2020-11-07 10:40:32 +00:00
walkdir = "2.3"
2019-09-07 16:12:18 +01:00
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["run-for-all", "prepush-hook", "run-cargo-clippy", "run-cargo-fmt"]
2019-09-07 16:12:18 +01:00