2023-02-15 19:27:36 -05:00
|
|
|
[package]
|
|
|
|
|
name = "api"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-02-25 12:14:05 -05:00
|
|
|
anyhow = { workspace = true }
|
2024-06-16 21:56:14 +09:00
|
|
|
axum = { workspace = true }
|
2023-02-25 12:14:05 -05:00
|
|
|
fred = { workspace = true }
|
2024-06-16 21:56:14 +09:00
|
|
|
hyper = { version = "1.3.1", features = ["http1"] }
|
|
|
|
|
hyper-util = { version = "0.1.5", features = ["client", "client-legacy", "http1"] }
|
2023-03-19 10:44:37 -04:00
|
|
|
lazy_static = { workspace = true }
|
2023-02-15 19:27:36 -05:00
|
|
|
libpk = { path = "../../lib/libpk" }
|
2023-03-19 10:44:37 -04:00
|
|
|
metrics = { workspace = true }
|
2024-06-16 21:56:14 +09:00
|
|
|
prost = { workspace = true }
|
|
|
|
|
reverse-proxy-service = { version = "0.2.1", features = ["axum"] }
|
|
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
sqlx = { workspace = true }
|
2023-02-25 12:14:05 -05:00
|
|
|
tokio = { workspace = true }
|
2023-02-15 19:27:36 -05:00
|
|
|
tower = "0.4.13"
|
2024-06-16 21:56:14 +09:00
|
|
|
tower-http = { version = "0.5.2", features = ["catch-panic"] }
|
2023-02-25 12:14:05 -05:00
|
|
|
tracing = { workspace = true }
|