-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
36 lines (32 loc) · 1.41 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
[package]
name = "taprootized-atomic-swaps"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0"
[workspace]
members = [
"crates/rapidsnark",
"crates/rapidsnark-sys",
"crates/witness_calculator"
]
[dependencies]
tokio = { version = "1.35.1", default-features = false, features = ["rt-multi-thread"] }
hex = { version = "0.4.3", default-features = false }
rand = { version = "0.8.4", default-features = false }
eyre = { version = "0.6.11", default-features = false }
clap = { version = "4.4.18", default-features = false, features = ["std"] }
ethers = { version = "=2.0.7", default-features = false, features = ["abigen", "rustls", "ws"] }
config = { version = "0.13.4", default-features = false, features = ["toml"] }
serde = { version = "1.0.130", default-features = false }
num = { version = "0.4.0" }
serde_json = { version = "1.0.111" }
rapidsnark = { path = "crates/rapidsnark" }
witness-calculator = { path = "crates/witness_calculator" }
[dependencies.bdk]
git = "https://github.com/velykodnyi/bdk"
tag = "0.28.2+fix.2"
features = ["rpc", "std", "compiler"]
default-features = false
[build-dependencies]
# To build rust bindings for contracts
ethers = { version = "=2.0.7", default-features = false, features = ["abigen"] }