17 lines
495 B
TOML
17 lines
495 B
TOML
[package]
|
|
name = "smart-home-in-rust-with-home-assistant"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
name = "smart_home_in_rust_with_home_assistant"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
pyo3 = "0.19.0"
|
|
pyo3-asyncio = { version = "0.19.0", features = ["tokio-runtime"] }
|
|
tokio = { version = "1.32.0", features = ["rt", "rt-multi-thread", "time"] }
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = "0.3.17"
|