-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
50 lines (44 loc) · 1.58 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
[package]
name = "everscale-rpc-server"
version = "0.4.0"
edition = "2021"
[dependencies]
anyhow = "1.0"
ahash = "0.8.11"
arc-swap = { version = "1.6", features = ["weak"] }
axum = { version = "0.6.0", features = ["http2", "ws"] }
axum-jrpc = { version = "0.5.1", features = ["serde_json"] }
base64 = "0.13"
bincode = "1.3"
broxus-util = { version = "0.2", default-features = false }
bytes = "1.4.0"
fdlimit = "0.3.0"
futures-util = "0.3"
hex = "0.4"
humantime = "2.1"
moka = { version = "0.12.10", features = ["sync"] }
num_cpus = "1.13.1"
parking_lot = { version = "0.12.0", features = ["hardware-lock-elision"] }
rlimit = "0.10.1"
rustc-hash = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["sync"] }
tower = "0.4.12"
tower-http = { version = "0.4.0", features = ["cors", "timeout"] }
tracing = "0.1.37"
metrics = "0.22.0"
uuid = { version = "1.6", features = ["v4", "serde"] }
weedb = { version = "0.2.5", features = ["zstd", "lz4", "jemalloc"] }
nekoton-abi = { git = "https://github.com/broxus/nekoton.git", default-features = false }
nekoton-proto = { git = "https://github.com/broxus/nekoton.git", default-features = false }
ton-indexer = { git = "https://github.com/broxus/ton-indexer.git" }
ton_block = { git = "https://github.com/broxus/ton-labs-block.git" }
ton_types = { git = "https://github.com/broxus/ton-labs-types.git" }
everscale-rpc-models = { path = "../models" }
[dev-dependencies]
hex = "0.4"
tokio = { version = "1", features = ["rt"] }
[features]
default = ["compression"]
compression = ["tower-http/compression-gzip"]