cuddle-templates/cuddle-rust-service/crates/%%name%%/Cargo.toml
kjuulh 45961d79eb
feat: add cuddle rust service
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-03-02 23:23:30 +01:00

19 lines
525 B
TOML

[package]
name = "%%name%%"
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"] }