-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (25 loc) · 785 Bytes
/
Cargo.toml
File metadata and controls
26 lines (25 loc) · 785 Bytes
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
[package]
name = "gateway"
version = "0.1.0"
edition = "2021"
[dependencies]
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
prometheus = { workspace = true }
anyhow = { workspace = true }
warp = { workspace = true }
agg_mode_sdk = { path = "../sdk"}
aligned-sdk = { workspace = true }
sp1-sdk = { workspace = true }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
bincode = "1.3.3"
actix-web = "4"
actix-multipart = "0.7.2"
actix-web-prometheus = "0.1.0-beta.8"
alloy = { workspace = true }
tokio = { version = "1", features = ["time"]}
# TODO: enable tls
sqlx = { version = "0.8", features = [ "runtime-tokio", "postgres", "uuid", "bigdecimal" ] }
hex = "0.4"