oswilno/crates/oswilno-server/Cargo.toml

27 lines
935 B
TOML
Raw Normal View History

2023-07-26 11:16:29 +02:00
[package]
name = "oswilno"
version = "0.1.0"
edition = "2021"
[dependencies]
actix = "0.13.0"
actix-rt = { version = "2.8.0", features = [] }
actix-web = "4.3.1"
actix-web-grants = "3.0.2"
askama = { version = "0.12.0", features = ["serde", "with-actix-web", "comrak", "mime"] }
futures = { version = "0.3.28", features = ["futures-executor"] }
oswilno-config = { path = "../oswilno-config" }
oswilno-parking-space = { path = "../oswilno-parking-space" }
oswilno-admin = { path = "../oswilno-admin" }
sea-orm = { version = "0.11.3", features = ["postgres-array", "runtime-actix-rustls", "sqlx-postgres"] }
serde = { version = "1.0.175", features = ["derive"] }
serde_json = "1.0.103"
tokio = { version = "1.29.1", features = ["full"] }
toml = "0.7.6"
2023-07-27 17:36:30 +02:00
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json"] }
tracing = "0.1.37"
2023-07-26 11:16:29 +02:00
[dev-dependencies]
insta = { version = "1.31.0", features = ["ron"] }
ron = "0.8.0"