forked from ghostant-1017/test_validators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (38 loc) · 1.22 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
[package]
name = "test_validators"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
indexmap = "2"
rand_chacha = "0.3"
anyhow = "1"
async-trait = "0.1.81"
tokio = {version = "1", features = ["full"]}
tokio-stream = "0.1"
rand = "0.8"
futures-util = "0.3.30"
[dependencies.tokio-util]
version = "0.7"
features = [ "codec" ]
[dependencies.snarkos-account]
git = "ssh://[email protected]/AleoNet/snarkOS.git"
branch = "mainnet-staging"
[dependencies.snarkos-node-bft]
git = "ssh://[email protected]/AleoNet/snarkOS.git"
branch = "mainnet-staging"
[dependencies.snarkos-node-bft-ledger-service]
git = "ssh://[email protected]/AleoNet/snarkOS.git"
branch = "mainnet-staging"
[dependencies.snarkos-node-tcp]
git = "ssh://[email protected]/AleoNet/snarkOS.git"
branch = "mainnet-staging"
[dependencies.snarkos-node-bft-events]
git = "ssh://[email protected]/AleoNet/snarkOS.git"
branch = "mainnet-staging"
[dependencies.snarkvm]
git = "ssh://[email protected]/AleoNet/snarkVM.git"
branch = "mainnet-staging"
features = ["console"]
[patch."https://github.com/AleoNet/snarkVM"]
snarkvm = { git = "ssh://[email protected]/AleoNet/snarkVM.git", branch = "mainnet-staging"}