hyperlog/crates/hyperlog-server/Cargo.toml
kjuulh 86cba91b16
All checks were successful
continuous-integration/drone/push Build is passing
feat: add protos
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-05-11 16:23:52 +02:00

31 lines
587 B
TOML

[package]
name = "hyperlog-server"
version = "0.1.0"
edition = "2021"
[dependencies]
hyperlog-core.workspace = true
hyperlog-protos.workspace = true
anyhow.workspace = true
tokio.workspace = true
tracing.workspace = true
axum.workspace = true
serde.workspace = true
serde_json.workspace = true
uuid.workspace = true
tonic.workspace = true
tower-http = { version = "0.5.2", features = ["cors", "trace"] }
sqlx = { version = "0.7.4", features = [
"runtime-tokio",
"tls-rustls",
"postgres",
"uuid",
"time",
] }
[dev-dependencies]
similar-asserts = "1.5.0"
tempfile = "3.10.1"