forked from everx-labs/ever-node-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
67 lines (56 loc) · 1.62 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
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
build = 'common/build/build.rs'
edition = '2021'
name = 'ton-node-tools'
version = '0.1.318'
[[bin]]
name = 'adnl_resolve'
path = 'bin/adnl_resolve.rs'
[[bin]]
name = 'adnl_ping'
path = 'bin/adnl_ping.rs'
[[bin]]
name = 'dhtscan'
path = 'bin/dhtscan.rs'
[[bin]]
name = 'gendht'
path = 'bin/gendht.rs'
[[bin]]
name = 'console'
path = 'bin/console.rs'
[[bin]]
name = 'keygen'
path = 'bin/keygen.rs'
[[bin]]
name = 'keyid'
path = 'bin/keyid.rs'
[[bin]]
name = 'print'
path = 'bin/print.rs'
[[bin]]
name = 'zerostate'
path = 'bin/zerostate.rs'
[dependencies]
base64 = '0.13'
clap = '2.33.3'
failure = '0.1.6'
hex = '0.4.2'
log = '0.4.11'
log4rs = '1.2'
serde = '1.0.105'
serde_json = '1.0.56'
shell-words = '1.0.0'
tokio-util = '0.7'
adnl = { features = [ 'client' ], git = 'https://github.com/tonlabs/ever-adnl.git', tag = '0.9.20' }
dht = { git = 'https://github.com/tonlabs/ever-dht.git', tag = '0.6.85' }
overlay = { git = 'https://github.com/tonlabs/ever-overlay.git', tag = '0.7.17' }
tokio = { features = [ 'rt-multi-thread' ], version = '1.5.0' }
ton_api = { git = 'https://github.com/tonlabs/ever-tl.git', package = 'ton_api', tag = '0.3.57' }
ton_block = { git = 'https://github.com/tonlabs/ever-block.git', tag = '1.9.121' }
ton_block_json = { git = 'https://github.com/tonlabs/ever-block-json.git', tag = '0.7.209' }
ton_node = { git = 'https://github.com/tonlabs/ever-node.git', branch = 'master' }
ton_types = { git = 'https://github.com/tonlabs/ever-types.git', tag = '2.0.31' }
[features]
default = [ 'telemetry' ]
export_key = [ 'ton_types/export_key' ]
telemetry = [ 'adnl/telemetry', 'dht/telemetry', 'overlay/telemetry' ]