-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
32 lines (30 loc) · 936 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
[package]
name = "grin_btc_poc"
version = "0.1.0"
authors = ["CoBloX developers <[email protected]>", "Lloyd Fournier <[email protected]>"]
edition = "2018"
[dependencies]
anyhow = "1"
bitcoin = { version = "0.19", git = "https://github.com/jaspervdm/rust-bitcoin", branch = "zkp", features = ["bitcoinconsensus"] }
bitcoin_hashes = "0.7"
blake2 = "0.8"
generic-array = "0.12"
grin_chain = "3"
grin_core = "3"
grin_keychain = "3"
grin_secp256k1zkp = "0.7"
grin_util = "3"
grin_wallet_controller = "3"
grin_wallet_impls = "3"
grin_wallet_libwallet = "3"
grin_wallet_util = "3"
hex = "0.4"
lazy_static = "1.4"
purerust_secp256k1 = { package = "libsecp256k1", version = "0.3" }
rand = "0.7"
sha2 = "0.8"
thiserror = "1"
ureq = { version = "0.11", default-features = false, features = ["json"]}
testcontainers = "0.8"
[patch.crates-io]
grin_secp256k1zkp = { git = "https://github.com/jaspervdm/rust-secp256k1-zkp", branch = "master" }