Files
lumi-re/backend/exposition/Cargo.toml
T

25 lines
699 B
TOML

[package]
name = "lumiere-exposition"
version = "1.0.0"
edition = "2024"
[lib]
name = "lumiere_exposition"
path = "src/lib.rs"
[dependencies]
lumiere-domain = { path = "../domain" }
lumiere-application = { path = "../application" }
lumiere-infrastructure = { path = "../infrastructure" }
actix-web = { version = "4.14.0", features = ["rustls-0_23"] }
actix-web-httpauth = "0.8.2"
async-stream = "0.3.6"
futures-util = "0.3.32"
chrono = "0.4.45"
jsonwebtoken = { version = "10.4.0", features = ["rust_crypto"] }
serde = { version = "1.0.228", features = ["derive"] }
uuid = { version = "1.23.5", features = ["v4", "serde"] }
tokio = { version = "1.52.3", features = ["fs"] }
tokio-util = "0.7.18"