25 lines
628 B
TOML
25 lines
628 B
TOML
[package]
|
|
name = "lumiere"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "lumiere"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
lumiere-domain = { path = "../domain" }
|
|
lumiere-application = { path = "../application" }
|
|
lumiere-infrastructure = { path = "../infrastructure" }
|
|
lumiere-exposition = { path = "../exposition" }
|
|
|
|
actix-web = { version = "4.14.0", features = ["rustls-0_23"] }
|
|
diesel = { version = "2.3.11", features = ["sqlite"] }
|
|
dotenv = "0.15.0"
|
|
env_logger = "0.11.11"
|
|
log = "0.4.33"
|
|
rusqlite = { version = "0.39.0", features = ["bundled"] }
|
|
rustls = "0.23.37"
|
|
rustls-pemfile = "2.2.0"
|
|
tokio-cron-scheduler = "0.15.1"
|