kalkutago/Cargo.toml

31 lines
546 B
TOML

[package]
name = "kalkulog-server"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "kalkulog-server"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sea-orm-migration = "0.11.3"
thiserror = "1.0.40"
[dependencies.derive_builder]
version = "0.12.0"
features = ["clippy"]
[dependencies.tokio]
version = "1.28.1"
features = ["full"]
[dependencies.sea-orm]
version = "^0"
features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"macros",
"with-time"
]