forked from Rexagon/everproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (38 loc) · 1.21 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
[package]
name = "everproxy"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "server"
path = "src/server.rs"
[[bin]]
name = "client"
path = "src/client.rs"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3" }
everscale-network = "0.4"
everscale-crypto = "0.1"
hyper-reverse-proxy = "0.5"
tokio = { version = "1", features = ["full"] }
hyper = { version = "0.14", features = ["full"] }
rand = "0.8"
public-ip = "0.2"
tl-proto = "0.3"
futures = "0.3"
hex = "0.4"
serde_json = "1.0"
global-config = { git = "https://github.com/broxus/ton-indexer" }
ton-indexer = { git = "https://github.com/broxus/ton-indexer" }
nekoton = { git = "https://github.com/broxus/nekoton" }
nekoton-transport = { git = "https://github.com/broxus/nekoton", features = [
"gql_transport",
"jrpc_transport",
] }
ton_types = { git = "https://github.com/broxus/ton-labs-types" }
ton_block = { git = "https://github.com/broxus/ton-labs-block" }
ton_executor = { git = "https://github.com/broxus/ton-labs-executor" }
everscale-jrpc-server = { git = "https://github.com/broxus/everscale-jrpc.git", default-features = false }
everscale-jrpc-models = { git = "https://github.com/broxus/everscale-jrpc.git" }