Skip to content

Commit 2832e5d

Browse files
committed
bumps to newest pyO3, converts Py into Bound
1 parent a21fc8d commit 2832e5d

File tree

7 files changed

+102
-215
lines changed

7 files changed

+102
-215
lines changed

rust/Cargo.lock

Lines changed: 36 additions & 147 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ strip = true
1414
overflow-checks = false
1515

1616
[dependencies]
17-
pyo3 = { version = "0.19.0", features = ["extension-module", "generate-import-lib"] }
17+
pyo3 = { version = "0.22", features = ["extension-module", "generate-import-lib"] }
1818
mimalloc = { version = "0.1.39", optional = true, default-features = false }
1919

2020
[features]

rust/src/parsing.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ pub struct ParsedDateTime {
2727
pub second: u32,
2828
pub microsecond: u32,
2929
pub offset: Option<i32>,
30+
#[allow(dead_code)]
3031
pub has_offset: bool,
3132
pub tzname: Option<String>,
3233
pub has_date: bool,

0 commit comments

Comments
 (0)