-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (30 loc) · 1008 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
28
29
30
31
32
[package]
name = "b2_backup"
description = "Incremental backups to Backblaze B2"
version = "0.1.0"
authors = ["Adam Reichold <[email protected]>"]
license = "GPL-3.0"
repository = "https://github.com/adamreichold/b2_backup"
edition = "2021"
publish = false
[dependencies]
aws-lc-rs = { version = "1.0" }
aws-lc-sys = { version = "0.23", features = ["bindgen"] }
base64 = "0.22"
blake3 = "1.0"
chacha20poly1305 = "0.10"
clap = { version = "4.0", default-features = false, features = ["std", "help", "usage", "cargo"] }
hex = "0.4"
nix = { version = "0.29", default-features = false, features = ["signal", "zerocopy"] }
rayon = "1.2"
rusqlite = { version = "0.31", features = ["bundled", "session"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
tempfile = "3.1"
zeptohttpc = { version = "0.10", features = ["tls-native-roots", "json"] }
zstd = { version = "0.13", default-features = false }
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
strip = "debuginfo"