feat: hyperlog with basic engine

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-04-28 23:10:15 +02:00
commit 7de4872816
15 changed files with 3435 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
[package]
name = "hyperlog"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
clap.workspace = true
dotenv.workspace = true
axum.workspace = true
serde = { version = "1.0.197", features = ["derive"] }
sqlx = { version = "0.7.3", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "time"] }
uuid = { version = "1.7.0", features = ["v4"] }
tower-http = { version = "0.5.2", features = ["cors", "trace"] }
serde_json = "1.0.116"
[dev-dependencies]
similar-asserts = "1.5.0"