25 lines
537 B
TOML
25 lines
537 B
TOML
[package]
|
|
name = "lumiere-application"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "surveillant_systeme_application"
|
|
path = "src/lib.rs"
|
|
|
|
[[test]]
|
|
name = "user_service_test"
|
|
path = "tests/user_service_test.rs"
|
|
|
|
[dependencies]
|
|
lumiere-domain = { path = "../domain" }
|
|
|
|
axum = "0.8.9"
|
|
tokio = "1.52.3"
|
|
mime = "0.3.17"
|
|
bcrypt = "0.19.0"
|
|
chrono = { version = "0.4.44", features = ["serde"] }
|
|
log = "0.4.29"
|
|
jsonwebtoken = { version = "10.3.0", features = ["rust_crypto"] }
|
|
rand = "0.10.1"
|
|
uuid = { version = "1.23.1", features = ["v4"] } |