-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (54 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
[package]
name = "rustic-toolz"
version = "0.1.0"
edition = "2015"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "2.33", features = ["wrap_help"] }
regex = "1.5.4"
glob = "0.3.0"
slug = "0.1.4"
url = "2.2.2"
reqwest = { version = "0.11", features = ["json", "cookies", "stream", "deflate","gzip", "brotli"] }
tokio = { version = "1", features = ["full"] }
term-table = "1.3.2"
#tokio = { version = "1", features = ["full"] }
indicatif = "0.17.0-beta.1"
#unwrap = "1.2.1"
console = "0.15.0"
rust-crypto = "0.2.36"
crypto = "0.4.0"
rand = "0.8.4"
#rustc-serialize = "0.3.24"
base64 = "0.13.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
rpassword = "5.0.1"
shellexpand = "2.1.0"
scrypt = { version = "0.2", default-features = false }
#bip39 = "1.0.1"
tiny-bip39 = "0.8.2"
#aes = { version = "0.8.1", features = ["armv8"]}
[dev-dependencies]
speculate = "0.1"
k9 = "0.11.1"
[lib]
name = "toolz"
path = "src/lib.rs"
[[bin]]
name = "slugify-filenames"
path = "src/slugify-filenames.rs"
bench = false
[[bin]]
name = "aes-256-cbc"
path = "src/aes256.rs"
bench = false
[[bin]]
name = "bip39"
path = "src/bip39.rs"
bench = false
[[bin]]
name = "ipleak"
path = "src/ipleak.rs"
bench = false