forked from everx-labs/ever-node-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
76 lines (56 loc) · 1.7 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
68
69
70
71
72
73
74
75
[package]
build = 'common/build/build.rs'
edition = '2021'
name = 'ton-node-tools'
version = '0.1.300'
[[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'
adnl = { features = [ 'client' ], git = 'https://github.com/tonlabs/ever-adnl.git', tag = '0.7.130' }
dht = { git = 'https://github.com/tonlabs/ever-dht.git', tag = '0.5.140' }
ever-crypto = { git = 'https://github.com/tonlabs/ever-crypto.git', tag = '0.1.90' }
overlay = { git = 'https://github.com/tonlabs/ever-overlay.git', tag = '0.6.123' }
tokio = { features = [ 'rt-multi-thread' ], version = '1.5.0' }
ton_api = { git = 'https://github.com/tonlabs/ever-tl.git', package = 'ton_api', tag = '0.2.177' }
ton_block = { git = 'https://github.com/tonlabs/ever-block.git', tag = '1.9.27' }
ton_block_json = { git = 'https://github.com/tonlabs/ever-block-json.git', tag = '0.7.94' }
ton_node = { git = 'https://github.com/tonlabs/ever-node.git', tag = '0.51.34' }
ton_types = { git = 'https://github.com/tonlabs/ever-types.git', tag = '1.12.7' }
[features]
default = [ 'telemetry' ]
export_key = [ 'ever-crypto/export_key' ]
telemetry = [ 'adnl/telemetry', 'dht/telemetry', 'overlay/telemetry' ]