forked from broxus/betterscale-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (34 loc) · 1.29 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
[package]
name = "betterscale-tools"
version = "0.1.1"
edition = "2021"
[[bin]]
name = "betterscale"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
argh = "0.1"
base64 = "0.13"
curve25519-dalek-ng = "4.1"
env_logger = "0.9.0"
everscale-crypto = "0.1"
generic-array = { version = "0.14", features = ["more_lengths"] }
hex = "0.4"
num-bigint = { version = "0.4", features = ["rand"] }
parking_lot = "0.12.0"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_path_to_error = "0.1"
sha2 = "0.9"
thiserror = "1.0"
tl-proto = "0.3"
tokio = { version = "1", features = ["macros", "sync", "rt-multi-thread"] }
nekoton = { git = "https://github.com/broxus/nekoton.git", features = ["gql_transport", "jrpc_transport"] }
nekoton-transport = { git = "https://github.com/broxus/nekoton.git", features = ["gql_transport", "jrpc_transport"] }
nekoton-utils = { git = "https://github.com/broxus/nekoton.git" }
nekoton-abi = { git = "https://github.com/broxus/nekoton.git" }
ever_block = { git = 'https://github.com/everx-labs/ever-block.git', branch = 'master' }
ton_block = { git = "https://github.com/broxus/ton-labs-block.git", features = ["venom"] }
ton_types = { git = "https://github.com/broxus/ton-labs-types.git" }
ton_abi = { git = "https://github.com/broxus/ton-labs-abi.git" }