forked from vault713/wallet713
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (33 loc) · 958 Bytes
/
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
[package]
name = "wallet713"
version = "0.1.0"
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"
[dependencies]
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
toml = "0.4"
clap = "2"
colored = "1.6"
ws = "*"
dirs = "1"
futures = "0.1"
tokio = "= 0.1.11"
rand = "0.4"
secp256k1 = { version="0.11", features=["rand"] }
sha2 = "0.8.0"
digest = "0.7"
lmdb-zero = "0.4"
failure = "0.1"
uuid = { version = "0.6", features = ["serde", "v4"] }
regex = "1"
rustyline = "3.0"
grin_core = { git = "https://github.com/mimblewimble/grin" }
grin_wallet = { git = "https://github.com/mimblewimble/grin" }
grin_keychain = { git = "https://github.com/mimblewimble/grin" }
grin_util = { git = "https://github.com/mimblewimble/grin" }
grin_store = { git = "https://github.com/mimblewimble/grin" }