Initial commit.

This commit is contained in:
Florian THIERRY
2026-07-13 21:57:58 +02:00
commit b5a95b0fa3
49 changed files with 11243 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
[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.13.0", features = ["rustls-0_23"] }
diesel = { version = "2.0", features = ["sqlite"] }
dotenv = "0.15.0"
env_logger = "0.11.10"
log = "0.4.29"
rusqlite = { version = "0.39.0", features = ["bundled"] }
rustls = "0.23.37"
rustls-pemfile = "2.2.0"
tokio-cron-scheduler = "0.15.1"