-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (42 loc) · 1.67 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
[package]
name = "sqd-portal"
version = "0.5.4"
edition = "2021"
[dependencies]
anyhow = "1"
async-stream = "0.3.5"
axum = { version = "0.7", features = ["http2"] }
base64 = "0.22"
chrono = "0.4"
clap = { version = "4", features = ["derive", "env"] }
dotenv = "0.15"
flate2 = "1.0.33"
futures = "0.3"
itertools = "0.12"
lazy_static = "1.4.0"
num-rational = "0.4"
num-traits = "0.2.19"
parking_lot = "0.12"
prometheus-client = "0.22"
reqwest = { version = "0.12.7", features = ["stream", "gzip", "json"] }
scopeguard = "1.2"
semver = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
serde_with = "3.11"
serde_yaml = "0.9"
static_assertions = "1.1.0"
thiserror = "1.0"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] }
tokio-stream = "0.1"
tokio-util = "0.7.11"
tower-http = { version = "0.6.1", features = ["cors", "decompression-gzip"] }
tracing = { version = "0.1", features = ["async-await"] }
tracing-futures = { version = "0.2.5", features = ["tokio", "futures-03"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
uuid = { version = "1", features = ["v4", "fast-rng"] }
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = { version = "0.5", features = ["profiling"] }
sqd-contract-client = { git = "https://github.com/subsquid/sqd-network.git", rev = "82303b9", version = "1.2.1" }
sqd-messages = { git = "https://github.com/subsquid/sqd-network.git", rev = "82303b9", version = "2.0.0", features = ["semver", "bitstring", "assignment_reader"] }
sqd-network-transport = { git = "https://github.com/subsquid/sqd-network.git", rev = "82303b9", version = "2.0.0", features = ["gateway", "metrics"] }