2024-05-11 15:50:24 +02:00
|
|
|
[package]
|
|
|
|
name = "hyperlog-server"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
hyperlog-core.workspace = true
|
2024-05-11 16:23:52 +02:00
|
|
|
hyperlog-protos.workspace = true
|
2024-05-11 15:50:24 +02:00
|
|
|
|
|
|
|
anyhow.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
tracing.workspace = true
|
|
|
|
axum.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
uuid.workspace = true
|
2024-05-11 16:23:52 +02:00
|
|
|
tonic.workspace = true
|
2024-05-11 15:50:24 +02:00
|
|
|
|
|
|
|
tower-http = { version = "0.5.2", features = ["cors", "trace"] }
|
2024-08-21 23:02:46 +02:00
|
|
|
sqlx = { version = "0.8.0", features = [
|
2024-05-11 15:50:24 +02:00
|
|
|
"runtime-tokio",
|
|
|
|
"tls-rustls",
|
|
|
|
"postgres",
|
|
|
|
"uuid",
|
|
|
|
"time",
|
|
|
|
] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
similar-asserts = "1.5.0"
|
|
|
|
tempfile = "3.10.1"
|