19 lines
458 B
TOML
19 lines
458 B
TOML
[package]
|
|
name = "backend"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
smart_house = { path = "../smart_house" }
|
|
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
tokio = { version = "1.52", features = ["rt", "rt-multi-thread", "signal", "time"] }
|
|
axum = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tower-http = { version = "0.6", features = ["cors"] }
|
|
|
|
[dev-dependencies]
|
|
reqwest = { version = "0.13", features = ["json"] }
|