forked from google/hat-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (46 loc) · 814 Bytes
/
Cargo.toml
File metadata and controls
51 lines (46 loc) · 814 Bytes
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
[package]
authors = ["Johan Nielsen <sejr@google.com>"]
name = "hat-backup"
version = "0.0.1-pre"
[[bin]]
name = "hatbin"
path = "src/main.rs"
[dependencies]
arrayref = "0.3.4"
byteorder = "1.2.3"
chrono = "0.4.4"
clap = "2.32.0"
diesel_migrations = "1.3.0"
env_logger = "0.5.10"
error-type = "0.1.2"
filetime = "0.2.1"
fuse = "0.3.1"
hex = "0.3.2"
libc = "0.2.42"
libsodium-sys = "0.1.0"
log = "0.4.3"
lru-cache = "0.1.1"
quickcheck = "0.6.2"
rand = "0.5.3"
scoped-pool = "1.0.0"
secstr = "0.3.0"
serde = "1.0.70"
serde_cbor = "0.8.2"
serde_derive = "1.0.70"
time = "0.1.40"
void = "1.0.2"
[dependencies.diesel]
default-features = false
features = [
"sqlite",
"chrono",
]
version = "1.3.2"
[features]
benchmarks = []
default = []
[lib]
name = "hat"
path = "src/lib.rs"
[profile.release]
debug = true