-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
84 lines (75 loc) · 2.34 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
[package]
name = "ton-indexer"
version = "0.4.1"
authors = ["Ivan Kalinin <i.kalinin@dexpa.io>"]
edition = "2021"
rust-version = "1.70"
[workspace]
members = ["global-config", "archive-downloader", "archive-uploader"]
[[example]]
name = "simple_node"
path = "examples/simple_node.rs"
[dependencies]
ahash = "0.8"
anyhow = "1.0"
arc-swap = "1.5.0"
async-trait = "0.1"
bytes = "1.1.0"
bumpalo = "3.12"
countme = { version = "3.0.0" }
crc = "3.0"
dashmap = "5.3"
everscale-network = "0.5.0"
fdlimit = "0.3.0"
futures-util = "0.3"
hex = "0.4"
humantime = "2.1.0"
libc = "0.2"
num-traits = "0.2"
once_cell = "1.12.0"
parking_lot = { version = "0.12.0", features = ["hardware-lock-elision"] }
rand = "0.8"
rlimit = "0.10.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
smallvec = { version = "1.8.0", features = ["const_generics", "serde", "write", "union"] }
sysinfo = { version = "0.30.12", default-features = false }
thiserror = "1.0"
tl-proto = { version = "0.4", features = ["derive"] }
tokio = { version = "1", features = ["sync", "fs", "rt-multi-thread", "parking_lot"] }
tokio-util = "0.7.0"
tracing = "0.1"
broxus-util = { version = "0.2", default-features = false, features = ["alloc"] }
triomphe = "0.1"
weedb = { version = "0.2.3", features = ["zstd", "lz4", "jemalloc", "metrics"] }
ton_block = { git = "https://github.com/broxus/ton-labs-block.git" }
ton_types = { git = "https://github.com/broxus/ton-labs-types.git" }
archive-uploader = { path = "archive-uploader", optional = true }
global-config = { path = "global-config" }
bytesize = { version = "1.2.0", features = ["serde"] }
quick_cache = { version = "0.5.1", features = ["stats"] }
metrics = "0.22.0"
base64 = "0.13.1"
[dev-dependencies]
argh = "0.1"
config = { version = "0.13", default-features = false, features = ["yaml"] }
serde_yaml = "0.9"
tokio = { version = "1", features = ["full"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
broxus-util = { version = "0.2", default-features = false, features = [
"config",
"alloc",
"public-ip",
"signal",
] }
metrics-exporter-tcp = "0.9.0"
[features]
default = []
count-cells = ["countme/enable", "ton_types/profile"]
archive-uploader = ["dep:archive-uploader"]
alloc-profiling = ["broxus-util/alloc-profiling"]
venom = ["ton_block/venom"]
ton = ["ton_block/ton"]
[profile.release]
debug = true