-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (71 loc) · 3.13 KB
/
Copy pathCargo.toml
File metadata and controls
78 lines (71 loc) · 3.13 KB
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 = "sqd-portal"
version = "0.11.7"
edition = "2021"
default-run = "sqd-portal"
[features]
sql = ["dep:once_cell", "dep:substrait", "dep:sql_query_plan"]
mvcc-chunks = ["sqd-assignments/mvcc-chunks"]
[dependencies]
anyhow = "1"
async-compression = { version = "0.4.20", features = ["tokio", "gzip"] }
async-stream = "0.3.5"
atomic_enum = { version = "0.3.0", features = ["cas"] }
axum = { version = "0.7", features = ["http2"] }
axum-extra = { version = "0.9", features = ["query"] }
base64 = "0.22"
utoipa = { version = "4", features = ["preserve_path_order"] }
utoipa-swagger-ui = { version = "6", features = ["axum"] }
utoipa-scalar = { version = "0.1", features = ["axum"] }
bimap = "0.6.3"
bytes = "1.9"
chrono = "0.4"
clap = { version = "4", features = ["derive", "env"] }
dotenv = "0.15"
flate2 = "1.0.33"
futures = "0.3"
hex-literal = "0.4.1"
itertools = "0.12"
lazy_static = "1.4.0"
libz-ng-sys = "1.1.23"
num-rational = "0.4"
num-traits = "0.2.19"
once_cell = { version = "1.21", optional = true }
prometheus-client = "0.23"
prost = "0.13.4"
rand = "0.9.2"
reqwest = { version = "0.12.7", features = ["stream", "gzip", "json"] }
scopeguard = "1.2"
semver = "1"
sentry = { version = "0.46.0", features = ["tracing", "tower"] }
serde = { version = "1", features = ["derive"] }
serde_ignored = "0.1"
serde_json = "1.0"
serde_with = "3.11"
serde_yaml = "0.9"
static_assertions = "1.1.0"
substrait = { version = "0.48.0", features = ["serde", "parse"], optional = true }
thiserror = "1.0"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] }
tokio-stream = "0.1"
tokio-util = "0.7.11"
tower = "0.5"
tower-http = { version = "0.6.1", features = ["cors", "decompression-gzip", "request-id", "trace"] }
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"] }
url = { version = "2.5", features = ["serde"] }
uuid = { version = "1", features = ["v4", "fast-rng"] }
[dev-dependencies]
proptest = "1.4.0"
proptest_async = { version = "0.2.1", default-features = false, features = ["tokio"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal", "test-util"] }
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = { version = "0.6", features = ["profiling"] }
sqd-assignments = { git = "https://github.com/subsquid/sqd-network.git", rev = "e9a3434", features = ["reader"] }
sqd-contract-client = { git = "https://github.com/subsquid/sqd-network.git", rev = "e9a3434", version = "1.3.0" }
sqd-messages = { git = "https://github.com/subsquid/sqd-network.git", rev = "e9a3434", version = "2.1.0", features = ["semver", "bitstring"] }
sqd-network-transport = { git = "https://github.com/subsquid/sqd-network.git", rev = "e9a3434", version = "3.1.0", features = ["portal", "metrics"] }
sqd-primitives = { git = "https://github.com/subsquid/data.git", rev = "eaa9f86", features = ["serde"] }
sqd-query = { git = "https://github.com/subsquid/data.git", rev = "eaa9f86" }
sql_query_plan = { git = "https://github.com/subsquid/qplan.git", rev = "2e61b51", optional = true }