-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
86 lines (77 loc) · 2.99 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
[package]
name = "ton-wallet-api"
version = "1.0.2"
edition = "2021"
authors = ["Broxus team"]
publish = false
license-file = "LICENSE"
[dependencies]
anyhow = "1.0"
axum = { version = "0.5.15", features = ["multipart"] }
argh = "0.1"
argon2 = "0.4.1"
async-trait = "0.1"
base64 = "0.13"
bigdecimal = { version = "0.4.5", features = ["serde"] }
chacha20poly1305 = "0.10.1"
chrono = { version = "0.4", features = ["serde"] }
config = { version = "0.13.2", default-features = false, features = ["yaml"] }
dashmap = "5.3.4"
derive_more = { version = "1.0.0", features = ["full"] }
env_logger = "0.10.0"
everscale-network = "^0.5.4"
futures = "0.3"
hex = "0.4"
hmac-sha256 = "1.1.4"
http = "0.2"
hyper = { version = "0.14" }
itertools = "0.10.1"
lazy_static = "1.4.0"
log = { version = "0.4", features = ["std", "serde"] }
log4rs = "1.0"
lru = "0.8"
metrics = "0.20.1"
metrics-exporter-prometheus = { version = "0.16.0", default-features = false, features = ["http-listener"] }
num-bigint = "0.4"
num-traits = "0.2"
opg = { version = "0.2", features = ["uuid"] }
parking_lot = "0.12.0"
pomfrit = "0.1"
rand = "0.8"
regex = "1.5"
reqwest = { version = "0.11.27", features = ["json"] }
rustc-hash = "1.1.0"
sentry = { version = "0.27.0", features = ["log", "debug-logs"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9.4"
sqlx = { version = "0.8.2", features = ["runtime-tokio-native-tls", "postgres", "uuid", "bigdecimal", "chrono", "json"] }
strum = "0.24.1"
strum_macros = "0.24.1"
thiserror = "1.0"
tokio = { version = "1.41", features = ["sync", "fs", "rt-multi-thread", "macros", "signal", "parking_lot"] }
tokio-util = "0.7.12"
tower = { version = "0.4.13", features = ["limit"] }
tower-http = { version = "0.3.4", features = ["trace", "cors", "limit", "set-header", "metrics"] }
tracing = "0.1.34"
uuid = { version = "1.1", features = ["v4", "serde"] }
ed25519-dalek = { git = "https://github.com/broxus/ed25519-dalek.git" }
# TON specific dependencies
ton_block = { git = "https://github.com/broxus/ton-labs-block" }
ton_abi = { git = "https://github.com/broxus/ton-labs-abi" }
ton_types = { git = "https://github.com/broxus/ton-labs-types" }
# Nekoton SDK
nekoton = { git = "https://github.com/broxus/nekoton.git", default-features = true, rev="561b60e7a47e994500dce9f25933dd8d8fb2987a" }
nekoton-abi = { git = "https://github.com/broxus/nekoton.git", features = ["derive"], rev="561b60e7a47e994500dce9f25933dd8d8fb2987a" }
nekoton-utils = { git = "https://github.com/broxus/nekoton.git", rev="561b60e7a47e994500dce9f25933dd8d8fb2987a" }
nekoton-contracts = { git = "https://github.com/broxus/nekoton.git", rev="561b60e7a47e994500dce9f25933dd8d8fb2987a" }
# Broxus utils
broxus-util = { version = "0.2", features = ["alloc", "public-ip", "config", "log4rs"] }
# Indexer engine
ton-indexer = { git = "https://github.com/broxus/ton-indexer.git" }
sysinfo = "0.30.13"
librocksdb-sys = "^0.16.0"
[features]
default = []
ton = ["ton_block/ton", "ton-indexer/ton"]
venom = ["ton_block/venom", "ton-indexer/venom"]