-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (71 loc) · 2.91 KB
/
Copy pathCargo.toml
File metadata and controls
78 lines (71 loc) · 2.91 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-worker"
license = "AGPL-3.0-or-later"
version = "2.12.0"
edition = "2021"
[features]
query-tracing = ["sqd-query/max_level_trace"]
[dependencies]
anyhow = "1.0"
async-compression = { version = "0.4.27", features = ["gzip", "tokio"] }
async-stream = "0.3.5"
async-trait = "0.1.79"
axum = { version = "0.7.4", features = ["http2"] }
base64 = "0.21.7"
bs58 = "0.5.1"
camino = "1.1.6"
clap = { version = "4.4.18", features = ["derive", "env"] }
criterion = { version = "0.5.1", features = ["async_tokio"] }
chrono = "0.4"
crypto_box = "0.9.1"
curve25519-dalek = "4.1.3"
dotenv = "0.15.0"
flate2 = "1.0.28"
futures = "0.3.30"
glob = "0.3.1"
hmac = "0.12.1"
itertools = "0.12.0"
lazy_static = "1.4.0"
mimalloc = "0.1.43"
parking_lot = "0.12.1"
prometheus-client = "0.23"
polars-plan = "0.43.1"
polars = { version = "0.43.1", features = ["json", "parquet"] }
prost = "0.13.5"
rand = "0.9.2"
regex = "1.10.2"
reqwest = { version = "0.12.8", default-features = false, features = ["json", "stream", "rustls-tls"] }
scopeguard = "1.2.0"
sentry = { version = "0.32.2", default-features = false, features = ["backtrace", "contexts", "debug-images", "panic", "reqwest", "rustls", "tracing"] }
sentry-tower = { version = "0.32.2", features = ["axum", "http"] }
serde = "1.0.195"
serde-rename-rule = "0.2.2"
serde_json = { version = "1.0.111", features = ["preserve_order"] }
serde_with = { version = "3.11.0", features = ["base64"] }
sha2 = "0.10.8"
sha3 = "0.10.8"
substrait = { version = "0.48.0", features = ["serde", "parse"] }
thiserror = "1.0.57"
tokio = { version = "1.35.1", features = ["full", "tracing", "test-util"] }
tokio-rusqlite = "0.5.1"
tokio-stream = { version = "0.1.14", features = ["sync"] }
tokio-util = "0.7.10"
tower-http = { version = "0.5.1", features = ["catch-panic"] }
tracing = { version = "0.1.40", features = ["async-await"] }
tracing-opentelemetry = "0.22.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "2.5.2"
walkdir = "2.5.0"
zstd = "0.13"
sqd-assignments = { git = "https://github.com/subsquid/sqd-network.git", rev = "acb765d", features = ["reader"] }
sqd-contract-client = { git = "https://github.com/subsquid/sqd-network.git", rev = "acb765d", version = "1.2.1" }
sqd-messages = { git = "https://github.com/subsquid/sqd-network.git", rev = "acb765d", version = "2.0.2", features = ["bitstring"] }
sqd-network-transport = { git = "https://github.com/subsquid/sqd-network.git", rev = "acb765d", version = "3.0.0", features = ["worker", "metrics"] }
sqd-query = { git = "https://github.com/subsquid/data.git", rev = "62ccfa9", features = ["parquet"] }
sqd-polars = { git = "https://github.com/subsquid/data.git", rev = "62ccfa9" }
sql_query_plan = {git = "https://github.com/subsquid/qplan.git", rev = "658f88f" }
[dev-dependencies]
sqd-assignments = { git = "https://github.com/subsquid/sqd-network.git", rev = "acb765d", features = ["builder"] }
[profile.release]
debug = true
opt-level = 3