bakare/Cargo.toml

54 lines
1 KiB
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>"]
2021-10-22 21:20:53 +01:00
edition = "2021"
2023-11-04 09:05:12 +00:00
rust-version = "1.63"
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]
anyhow = "1.0"
2024-05-04 18:30:23 +01:00
base64 = "0.22"
2021-10-31 00:25:37 +01:00
blake = "2"
2023-11-04 09:05:12 +00:00
chacha20poly1305 = "0.10"
2021-12-27 21:40:08 +00:00
fail = "0.5"
2021-10-22 22:29:24 +01:00
femme = "2"
hex = "0.4"
log = "0.4"
2020-12-25 16:29:00 +00:00
rand = "0.8"
2021-05-15 20:10:26 +01:00
reed-solomon = "0.2"
2022-07-18 14:34:43 +01:00
seahorse = "2"
2019-09-01 20:10:00 +01:00
serde = { version = "1.0", features = ["derive"] }
2021-10-22 22:29:24 +01:00
serde_json = "1"
2021-12-27 21:40:08 +00:00
sha2 = "0.10"
2021-10-22 22:29:24 +01:00
tempfile = "3"
2022-07-18 14:34:43 +01:00
uuid = { version = "1", features = ["v4"] }
2021-10-22 22:29:24 +01:00
walkdir = "2"
2019-09-07 16:12:18 +01:00
2023-11-04 09:05:12 +00:00
[dependencies.nix]
2024-05-04 18:30:23 +01:00
version = "0.28"
2023-11-04 09:05:12 +00:00
default-features = false
features = ["process"]
2020-11-28 11:48:37 +00:00
[dev-dependencies]
2023-11-04 09:05:12 +00:00
criterion = "0.5"
2021-10-22 22:29:24 +01:00
pretty_assertions = "1"
2021-05-16 11:22:03 +01:00
proptest = "1"
2021-10-22 22:29:24 +01:00
two-rusty-forks = "0.4"
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
2021-05-16 20:24:11 +01:00
[[bench]]
name = "bench"
harness = false
2020-11-28 13:28:00 +00:00
[profile.release]
debug = 1
2020-12-27 21:10:13 +00:00
[features]
2021-10-22 21:20:53 +01:00
failpoints = [ "fail/failpoints" ]