forked from andrewchambers/bupstash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (59 loc) · 1.29 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "bupstash"
version = "0.12.1"
authors = ["Andrew Chambers <[email protected]>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/andrewchambers/bupstash"
readme = "README.md"
description = "Easy and efficient encrypted backups."
[profile.release]
lto = true
panic = 'abort'
codegen-units = 1
incremental = false
[features]
simd-rollsum = []
[dependencies]
# More trusted dependencies
crossbeam-utils = "0.8"
crossbeam-channel = "0.5"
blake3 = "1"
itertools = "0.10"
rusqlite = { version = "0.25", features = ["bundled"] }
lz4 = "1.2"
zstd-safe = { version = "6.0", features = ["std", "experimental"] }
anyhow = "1"
thiserror = "1.0"
libc = "0.2"
getopts = "0.2"
codemap = "0.1"
codemap-diagnostic = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_bare = "0.4"
path-clean = "0.1.0"
humantime = "2.0.1"
atty = "0.2"
once_cell = "1.4"
tar = "0.4"
regex = { version = "1", default-features = false, features = ["std"] }
globset = "0.4.8"
chrono = { version = "0.4", features = ["serde"]}
cfg-if = "0.1"
shlex = "0.1"
nix = "0.23"
indicatif = "0.16.2"
rangemap = "0.1.11"
xattr = "0.2"
walkdir = "2"
bitflags = "1"
uriparse = "0.6"
plmap = "0.3.0"
num_cpus = "1"
[dev-dependencies]
rand = "0.8"
tempfile = "3"
[build-dependencies]
cc = "1"
pkg-config = "0.3"