-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
56 lines (49 loc) · 1.59 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
[package]
name = "main"
version = "0.1.0"
edition = "2021"
publish = false
[[bin]]
name = "komodo-defi-proxy"
path = "src/main.rs"
[dependencies]
async-trait = "0.1.53"
bytes = "1.1.0"
ethereum-types = { version = "0.4", default-features = false, features = ["std", "serialize"] }
futures-util = "0.3.21"
hyper = { version = "0.14.18", default-features = false, features = ["server", "http1", "http2", "tcp", "client"] }
hyper-tls = "0.5.0"
jsonwebtoken = "8.1.0"
log = "0.4.17"
once_cell = "1.12.0"
url = { version = "2.2.2", features = ["serde"] }
redis = { version = "0.21.5", default-features = false, features = ["tokio-comp"] }
serde = "1.0.137"
serde_json = { version = "1.0.81", features = ["preserve_order", "raw_value"] }
sha3 = "0.9"
simple_logger = "2.1.0"
timed-map = { version = "1.1", features = ["rustc-hash"] }
tokio = { version = "1.12.0", default-features = false, features = ["macros", "rt-multi-thread", "sync", "time"] }
tokio-tungstenite = { version = "0.20.0", features = ["native-tls"] }
# From our sources
libp2p = { git = "https://github.com/KomodoPlatform/rust-libp2p.git", tag = "k-0.52.4", default-features = false, features = ["identify"] }
proxy_signature = { git = "https://github.com/KomodoPlatform/komodo-defi-framework", branch = "dev" }
[target.x86_64-unknown-linux-gnu.dependencies]
jemallocator = "0.5.0"
[dev-dependencies]
hex = "0.4.3"
[profile.release]
debug = 0
debug-assertions = false
opt-level = 3
strip = true
codegen-units = 1
lto = true
panic = "abort"
[profile.dev]
opt-level = 0
debug = 1
debug-assertions = false
panic = 'unwind'
incremental = true
codegen-units = 256