refactor?

This commit is contained in:
2024-02-16 13:43:24 +01:00
parent d180e72373
commit 506ce117d3
16 changed files with 44 additions and 34 deletions

17
snitch_srv/Cargo.toml Normal file
View File

@ -0,0 +1,17 @@
[package]
name = "snitch_srv"
version = "1.0.0"
edition = "2021"
[dependencies]
snitch = { path = "../snitch" }
anyhow = "*"
log = "0.4"
serde = { version = "1", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "postgres", "sqlite", "migrate", "macros", "chrono"] }
rocket_dyn_templates = { version = "0.1.0-rc.2", features = ["handlebars"] }
rocket_db_pools = { version = "0.1.0-rc.2", features = ["sqlx_postgres"] }
rocket = { version = "0.5.0-rc.2", features = ["json"] }
clap = { version = "4.0.23", features = ["derive", "env"] }