oswilno/crates/oswilno-parking-space/Cargo.toml

17 lines
632 B
TOML
Raw Normal View History

2023-07-26 11:16:29 +02:00
[package]
name = "oswilno-parking-space"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix = "0.13.0"
actix-web = "4.3.1"
askama = { version = "0.12.0", features = ["serde", "with-actix-web", "comrak", "mime"] }
tokio = { version = "1.29.1", features = ["full"] }
2023-07-27 17:36:30 +02:00
oswilno-contract = { path = "../oswilno-contract" }
2023-07-27 22:54:55 +02:00
sea-orm = { version = "0.11.1", features = ["runtime-actix-rustls", "sqlx", "sqlx-postgres", "debug-print"] }
2023-07-27 17:36:30 +02:00
serde = { version = "1.0.176", features = ["derive"] }
serde_json = "1.0.104"
2023-08-01 16:29:03 +02:00
askama_actix = "0.14.0"