chore: enable pyo3's chrono-tz feature (so that datetimes with a dynamic timezone implement IntoPyObject)

This commit is contained in:
2025-03-15 15:30:48 -04:00
parent 8099e5b8cd
commit 530a73d00e
2 changed files with 2 additions and 1 deletions

1
Cargo.lock generated
View File

@@ -587,6 +587,7 @@ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"chrono", "chrono",
"chrono-tz",
"indoc", "indoc",
"libc", "libc",
"memoffset", "memoffset",

View File

@@ -20,7 +20,7 @@ derive_more = { version = "2.0.1", features = [
] } ] }
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", "chrono-tz"] }
pyo3-async-runtimes = { version = "0.23.0", features = ["tokio-runtime"] } pyo3-async-runtimes = { version = "0.23.0", features = ["tokio-runtime"] }
serde_json = "1.0.140" serde_json = "1.0.140"
snafu = "0.8.5" snafu = "0.8.5"