-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
42 lines (36 loc) · 1.11 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
[package]
name = "u4pak"
version = "1.4.0"
authors = ["Mathias Panzenböck <[email protected]>", "L. Sprengel <[email protected]>"]
edition = "2018"
license-file = "LICENSE.txt"
[[bin]]
name="u4pak"
path="src/bin/u4pak/main.rs"
[lib]
name="u4pak"
path="src/lib.rs"
[dependencies]
clap = "2.34"
chrono = "0.4"
flate2 = "1.0.22"
#flate2 = { version = "1.0.20", features = ["zlib"], default-features = false }
crossbeam-channel = "0.5"
crossbeam-utils = "0.8"
num_cpus = "1.13.1"
# OpenSSL's SHA-1 implementation is much faster than the one in rust-crypto
openssl = { version = "0.10", features = ["vendored"] }
terminal_size = "0.1.17"
aes = "0.7.5"
base64 = "0.13.0"
log = "0.4"
env_logger = "0.9.0"
[target.'cfg(target_os = "linux")'.dependencies]
# for sendfile() and fuse support
libc = "0.2.113"
# FUSE might work on other OSes too (like macOS and BSD), but I don't use
# anything other than Linux (testing Windows binaries through wine).
# Also I use "cntr-fuse" because it seems to be more actively maintained than
# "fuse". Is that a wise choice?
cntr-fuse = { version = "0.4" }
daemonize = { version = "0.4.1" }