diff --git a/Cargo.lock b/Cargo.lock index d74f2e8..58ef025 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -842,7 +842,7 @@ checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd" [[package]] name = "smart-home-in-rust-with-home-assistant" -version = "0.1.0" +version = "0.2.0" dependencies = [ "chrono", "chrono-tz", diff --git a/Cargo.toml b/Cargo.toml index e0a2a58..b376dbc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smart-home-in-rust-with-home-assistant" -version = "0.1.0" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -11,7 +11,13 @@ crate-type = ["cdylib"] [dependencies] chrono = "0.4.40" chrono-tz = "0.10.1" -derive_more = { version = "2.0.1", features = ["display", "from", "into", "try_from", "try_into"] } +derive_more = { version = "2.0.1", features = [ + "display", + "from", + "into", + "try_from", + "try_into", +] } ijson = "0.1.4" itertools = "0.14.0" pyo3 = { version = "0.23.0", features = ["chrono"] }