forked from broxus/ever-wallet-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
78 lines (71 loc) · 2.61 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
[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.3.0", 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 = "*"
env_logger = "0.10.0"
everscale-network = "0.5"
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.11.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", 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.6", features = ["runtime-tokio-native-tls", "postgres", "uuid", "bigdecimal", "offline", "chrono", "json"] }
strum = "0.24.1"
strum_macros = "0.24.1"
thiserror = "1.0"
tokio = { version = "1.16.1", features = ["sync", "fs", "rt-multi-thread", "macros", "signal", "parking_lot"] }
tokio-util = "0.7.1"
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 = false }
nekoton-abi = { git = "https://github.com/broxus/nekoton.git", features = ["derive"] }
nekoton-utils = { git = "https://github.com/broxus/nekoton.git" }
nekoton-contracts = { git = "https://github.com/broxus/nekoton.git" }
# 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" }