forked from everx-labs/ever-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
91 lines (83 loc) · 3.06 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[package]
build = 'common/build/build.rs'
edition = '2021'
name = 'ton_node'
version = '0.55.71'
[workspace]
members = [ 'storage' ]
[dependencies]
arc-swap = '0.3.11'
async-recursion = '0.3.2'
async-trait = '0.1.22'
bitflags = '1.2.1'
chrono = '=0.4.19'
clap = '2.33.1'
colored = '1.9.3'
crossbeam-channel = '0.4.2'
dashmap = '5.4.0'
dirs = '2.0.2'
enum-as-inner = '=0.5.1'
env_logger = '0.7.1'
failure = '0.1'
futures = '0.3.1'
futures-timer = '3.0.1'
hex = '0.4'
lazy_static = '1.4.0'
log = '0.4'
log4rs = '1.2'
log4rs-rolling-file = '0.2.0'
metrics = '0.21.0'
num-bigint = '0.4'
num_cpus = '1.13'
openssl = '0.10.35'
parking_lot = '0.12'
rand = '0.7'
regex = '^1.3.0'
serde = '1.0.105'
serde_derive = '1.0.105'
serde_json = '1.0.64'
spin = '0.7.1'
stream-cancel = '0.8.0'
string-builder = '^0.2.0'
tokio-util = '0.7'
adnl = { features = [ 'client', 'node', 'server' ], git = 'https://github.com/tonlabs/ever-adnl.git', tag = '0.9.1' }
catchain = { path = 'catchain' }
ctrlc = { features = [ 'termination' ], version = '3.4.0' }
dht = { git = 'https://github.com/tonlabs/ever-dht.git', tag = '0.6.61' }
lockfree = { git = 'https://github.com/tonlabs/lockfree.git' }
metrics-exporter-prometheus = { optional = true, version = '0.12.1' }
metrics-exporter-statsd = { optional = true, version = '0.5.0' }
overlay = { git = 'https://github.com/tonlabs/ever-overlay.git', tag = '0.6.240' }
rldp = { git = 'https://github.com/tonlabs/ever-rldp.git', tag = '0.7.232' }
statsd = { optional = true, version = '0.15' }
storage = { path = 'storage' }
tokio = { features = [ 'rt-multi-thread' ], version = '1.5' }
ton_abi = { git = 'https://github.com/tonlabs/ever-abi.git', optional = true, tag = '2.3.147' }
ton_api = { git = 'https://github.com/tonlabs/ever-tl.git', package = 'ton_api', tag = '0.3.41' }
ton_block = { git = 'https://github.com/tonlabs/ever-block.git', tag = '1.9.104' }
ton_block_json = { git = 'https://github.com/tonlabs/ever-block-json.git', tag = '0.7.189' }
ton_executor = { git = 'https://github.com/tonlabs/ever-executor.git', tag = '1.16.83' }
ton_types = { git = 'https://github.com/tonlabs/ever-types.git', tag = '2.0.28' }
ton_vm = { git = 'https://github.com/tonlabs/ever-vm.git', tag = '1.8.212' }
validator_session = { path = 'validator-session' }
[features]
default = [ 'telemetry' ]
export_key = [ 'catchain/export_key', 'ton_types/export_key' ]
external_db = [ 'rdkafka' ]
gosh = [ 'ton_block/gosh', 'ton_vm/gosh' ]
log_metrics = [ ]
prometheus = [ 'metrics-exporter-prometheus', 'log_metrics' ]
signature_with_id = [ 'ton_block/signature_with_id', 'ton_vm/signature_with_id', 'ton_executor/signature_with_id' ]
slashing = [ 'ton_abi', 'validator_session/slashing' ]
statsd = [ 'metrics-exporter-statsd', 'log_metrics', 'dep:statsd' ]
telemetry = [ 'adnl/telemetry', 'dht/telemetry', 'rldp/telemetry', 'overlay/telemetry', 'storage/telemetry' ]
trace_alloc = [ ]
trace_alloc_detail = [ 'trace_alloc' ]
[profile]
[target.'cfg(unix)'.dependencies.rdkafka]
optional = true
version = '0.26.0'
[target.'cfg(windows)'.dependencies.rdkafka]
features = [ 'cmake_build' ]
optional = true
version = '0.26.0'