chore: version 0.2.0 (bumping it makes me feel like I'm making progress)

This commit is contained in:
2025-03-13 16:02:27 -04:00
parent 95b7f38fc1
commit d9960a1650
2 changed files with 9 additions and 3 deletions

2
Cargo.lock generated
View File

@@ -842,7 +842,7 @@ checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
[[package]] [[package]]
name = "smart-home-in-rust-with-home-assistant" name = "smart-home-in-rust-with-home-assistant"
version = "0.1.0" version = "0.2.0"
dependencies = [ dependencies = [
"chrono", "chrono",
"chrono-tz", "chrono-tz",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "smart-home-in-rust-with-home-assistant" name = "smart-home-in-rust-with-home-assistant"
version = "0.1.0" version = "0.2.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -11,7 +11,13 @@ crate-type = ["cdylib"]
[dependencies] [dependencies]
chrono = "0.4.40" chrono = "0.4.40"
chrono-tz = "0.10.1" 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" ijson = "0.1.4"
itertools = "0.14.0" itertools = "0.14.0"
pyo3 = { version = "0.23.0", features = ["chrono"] } pyo3 = { version = "0.23.0", features = ["chrono"] }