forked from vault713/wallet713
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
56 lines (55 loc) · 1.27 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
[package]
name = "wallet713"
version = "3.0.0-beta.1"
authors = ["vault713 devs"]
description = "A wallet that makes it easy to send, store, and swap Grin."
keywords = [ "grin", "mimblewimble", "rust", "crypto", "cryptocurrency" ]
license = "Apache-2.0"
readme = "README.md"
edition = "2018"
[dependencies]
ansi_term = "0.11"
blake2-rfc = "0.2"
chrono = { version = "0.4.4", features = ["serde"] }
clap = { version = "2", features = ["yaml"] }
colored = "1.6"
digest = "0.7"
dirs = "1"
dont_disappear = "3.0.0"
easy-jsonrpc-mw = "0.5.3"
env_logger = "0.6.0"
failure = "0.1"
futures = "0.1"
gotham = "0.3.0"
gotham_derive = "0.3.0"
grin_api = "3.0.0"
grin_core = "3.0.0"
grin_keychain = "3.0.0"
grin_store = "3.0.0"
grin_util = "3.0.0"
hmac = "0.6"
http = "0.1.5"
hyper = "0.12"
hyper-rustls = "0.14"
lmdb-zero = "0.4"
log = "0.4"
mime = "0.3"
native-tls = { version = "0.2", features = ["vendored"] }
parking_lot = "0.6"
prettytable-rs = "0.7"
rand = "0.5"
regex = "1"
ring = "0.13"
ripemd160 = "0.7"
rpassword = "2.1.0"
rustyline = "5.0"
semver = "0.9.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.7"
term = "0.5"
tokio = "= 0.1.11"
toml = "0.4"
url = "1.7"
uuid = { version = "0.6", features = ["serde", "v4"] }
ws = { version = "0.8", features = ["nativetls"] }