-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (40 loc) · 1.25 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
47
48
49
50
51
52
53
54
[package]
name = "coin-shuffle-node"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.coin-shuffle-core]
git = "ssh://[email protected]/coin-shuffle/core.git"
branch = "refactoring"
features = ["serde"]
[dependencies.coin-shuffle-protos]
git = "ssh://[email protected]/coin-shuffle/protos.git"
branch = "develop"
[dependencies.coin-shuffle-contracts-bindings]
git = "ssh://[email protected]/coin-shuffle/contracts-bindings.git"
branch = "develop"
[dependencies]
# easy cli parsing
clap = { version = "4.1.6", features = ["derive", "cargo"] }
## ethereum lib
#ethers-core = { version = "1.0.2" }
#ethers-providers = { version = "1.0.2" }
ethers = "2"
# convinient error handling
thiserror = { version = "1.0.38" }
eyre = { version = "0.6.8" }
# logger
simplelog = { version = "0.12.0", features = ["termcolor"] }
log = { version = "0.4.17" }
# RSA
rsa = { version = "0.8.1" }
# protobuf grpc
tonic = { version = "0.8.3" }
# async
tokio = { version = "1.25.0" }
async-trait = { version = "0.1.64" }
# uuid
uuid = { version = "1.3.0" }
open-fastrlp = { version = "0.1.4" }
[profile.dev.package.num-bigint-dig]
opt-level = 3