bakare/Cargo.toml

49 lines
1,000 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"
2021-01-16 09:25:40 +00:00
authors = ["Cyryl Płotnicki <cyplo@cyplo.dev>"]
2018-12-22 11:31:27 +00:00
edition = "2018"
2018-12-22 11:58:37 +00:00
license = "AGPL-3.0"
2021-01-16 09:30:26 +00:00
description = "modern and simple, yet efficient backup solution"
2018-08-17 09:58:00 +01:00
[dependencies]
2021-05-16 10:37:23 +01:00
cacache = "8"
anyhow = "1.0"
atomicwrites = "0.2"
2020-11-08 20:17:38 +00:00
base64 = "0.13"
2020-12-27 21:10:13 +00:00
fail = "0.4"
2020-11-08 20:17:38 +00:00
femme = "2.1"
fs2 = "0.4"
glob = "0.3"
hex = "0.4"
log = "0.4"
nix = "0.19"
2020-12-25 16:29:00 +00:00
rand = "0.8"
2020-11-08 20:17:38 +00:00
rayon = "1.5"
2021-05-15 20:10:26 +01:00
reed-solomon = "0.2"
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"
2021-02-07 00:13:41 +00:00
tempfile = "3.2"
thiserror = "1.0"
uuid = { version = "0.8", features = ["v4"] }
2020-12-25 21:52:40 +00:00
vfs = "0.4"
2020-11-07 10:40:32 +00:00
walkdir = "2.3"
2019-09-07 16:12:18 +01:00
2020-11-28 11:48:37 +00:00
[dev-dependencies]
proptest = "0.10"
two-rusty-forks = "0.4.0"
2021-05-15 21:20:30 +01:00
pretty_assertions = "0.7"
2020-11-28 11:48:37 +00:00
2019-09-07 16:12:18 +01:00
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
2020-11-08 18:07:11 +00:00
features = ["run-for-all", "prepush-hook", "run-cargo-check", "run-cargo-test", "run-cargo-clippy", "run-cargo-fmt"]
2019-09-07 16:12:18 +01:00
2020-11-28 13:28:00 +00:00
[profile.release]
debug = 1
2020-12-27 21:10:13 +00:00
[features]
failpoints = [ "fail/failpoints" ]