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

20 lines
821 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"] }
2023-08-03 16:16:46 +02:00
askama_actix = "0.14.0"
2023-08-15 13:36:35 +02:00
autometrics = { version = "0.5.0", features = ["tracing", "tracing-subscriber", "thiserror"] }
2023-07-27 17:36:30 +02:00
oswilno-contract = { path = "../oswilno-contract" }
2023-08-11 22:31:02 +02:00
oswilno-session = { path = "../oswilno-session" }
oswilno-view = { path = "../oswilno-view" }
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-03 16:16:46 +02:00
tokio = { version = "1.29.1", features = ["full"] }