mirror of
https://codeberg.org/Toasterson/solstice-ci.git
synced 2026-04-10 13:20:41 +00:00
20 lines
830 B
TOML
20 lines
830 B
TOML
|
|
[package]
|
||
|
|
name = "logs-service"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2024"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
common = { path = "../common" }
|
||
|
|
clap = { version = "4", features = ["derive", "env"] }
|
||
|
|
axum = { version = "0.8", features = ["macros"] }
|
||
|
|
serde = { version = "1", features = ["derive"] }
|
||
|
|
serde_json = "1"
|
||
|
|
miette = { version = "7", features = ["fancy"] }
|
||
|
|
tracing = "0.1"
|
||
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal", "net"] }
|
||
|
|
sea-orm = { version = "1.1.17", default-features = false, features = ["sqlx-postgres", "sqlx-sqlite", "runtime-tokio-rustls", "macros", "with-uuid", "with-chrono" ] }
|
||
|
|
sea-orm-migration = { version = "1.1.17" }
|
||
|
|
migration = { path = "../migration" }
|
||
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
||
|
|
chrono = { version = "0.4", default-features = false, features = ["clock", "std", "serde"] }
|