-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
26 lines (23 loc) · 952 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
[package]
name = "mw-btc-swap"
version = "0.1.0"
authors = ["Jakob <jakobabfalter@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.58"
clap = "2.33"
bitcoin = {version = "0.25.2", features = ["rand"] }
rand = "0.6.5"
sha2 = "0.9.1"
hex = "0.4.2"
reqwest = { version = "0.10", features = ["json","blocking"] }
tokio = { version = "0.2", features = ["full"] }
#grin_core = { path = "./grin/core" }
#grin_util = { path = "./grin/util" }
#grin_keychain = { path = "./grin/keychain" }
grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-rc.1" }
grin_wallet_libwallet = { path = "grin-wallet/libwallet"}
grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-rc.1" }
grin_keychain = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-rc.1" }