Skip to content

Commit af3eed1

Browse files
committed
Upgrade PyO3 and string-interner to latest versions
1 parent 342c0be commit af3eed1

File tree

3 files changed

+15
-17
lines changed

3 files changed

+15
-17
lines changed

rust/Cargo.lock

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

rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ slotmap = "1.0.7"
1414
getset = "0.1.6"
1515
derive-new = "0.7.0"
1616
lazy_static = "1.5.0"
17-
string-interner = "0.18.0"
17+
string-interner = "0.19.0"
1818
thiserror = "2.0.16"
1919
itertools = "0.14.0"
2020
tap = "1.0.1"
@@ -31,7 +31,7 @@ unindent = "0.2.4"
3131
encoding_rs = "0.8.35"
3232

3333
[dependencies.pyo3]
34-
version = "0.24.2"
34+
version = "0.26.0"
3535

3636
[features]
3737
extension-module = ["pyo3/extension-module"]

rust/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ fn scan_for_imports<'py>(
8080
})
8181
.collect();
8282

83-
let imports_by_module_result = py.allow_threads(|| {
83+
let imports_by_module_result = py.detach(|| {
8484
scan_for_imports_no_py(
8585
&file_system_boxed,
8686
&found_packages_rust,

0 commit comments

Comments
 (0)