-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
46 lines (42 loc) · 1.83 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
[package]
name = "grinswap"
version = "0.1.0"
authors = ["vault713 <[email protected]>"]
description = "Grin cross-chain atomic swaps"
keywords = [ "grin", "mimblewimble", "rust", "crypto", "cryptocurrency", "atomic swap", "scriptless scripts" ]
license = "Apache-2.0"
readme = "README.md"
edition = "2018"
[dependencies]
bitcoin = { version = "0.19", git = "https://github.com/jaspervdm/rust-bitcoin", branch = "zkp", features = ["bitcoinconsensus"] }
bitcoin_hashes = "0.7"
blake2-rfc = "0.2"
byteorder = "1.3"
chrono = { version = "0.4", features = ["serde"] }
failure = "0.1"
failure_derive = "0.1"
hex = "0.3"
parking_lot = "0.6"
rand = "0.5"
serde = "1"
serde_derive = "1"
serde_json = "1"
sha2 = "0.8"
uuid = { version = "0.6", features = ["serde", "v4"] }
#grin_core = "2.0.0"
#grin_keychain = "2.0.0"
#grin_store = "2.0.0"
#grin_util = "2.0.0"
#grin_core = { path = "../grin_fork/core", version= "2.0.1-beta.1"}
#grin_keychain = { path = "../grin_fork/keychain", version= "2.0.1-beta.1"}
#grin_store = { path = "../grin_fork/store", version= "2.0.1-beta.1"}
#grin_util = { path = "../grin_fork/util", version= "2.0.1-beta.1"}
grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
grin_store = { git = "https://github.com/mimblewimble/grin", branch = "master" }
grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
#grin_wallet_libwallet = { git = "https://github.com/mimblewimble/grin-wallet", tag = "v2.0.0" }
#grin_wallet_libwallet = { path = "../grin-wallet_fork/libwallet", version = "2.1.0-beta.1" }
grin_wallet_libwallet = { git = "https://github.com/jaspervdm/grin-wallet", branch = "kernel_lookup" }
[patch.crates-io]
grin_secp256k1zkp = { git = "https://github.com/jaspervdm/rust-secp256k1-zkp", branch = "master" }