20 lines
498 B
TOML
20 lines
498 B
TOML
[package]
|
|
name = "lumiere-infrastructure"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "surveillant_systeme_infrastructure"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
lumiere-domain = { path = "../domain" }
|
|
|
|
chrono = "0.4.44"
|
|
diesel = { version = "2.1.0", features = ["sqlite", "returning_clauses_for_sqlite_3_35"] }
|
|
diesel_migrations = "2.1.0"
|
|
log = "0.4.29"
|
|
rand = "0.10.1"
|
|
rusqlite = { version = "0.39.0", features = ["bundled"] }
|
|
sysinfo = "0.39.1"
|
|
uuid = { version = "1.23.1", features = ["v4"] } |