v1.7.0
- Updated default pyo3 version to 0.23.4
- Fixed unresolvability of dependencies specified by a relative path (thanks for reporting @b45ch1)
- Adjust detection of functions, classes and enums to the new pyo3 version and add support for detecting pyo3's new declarative module syntax
- Restructured examples and their documentation
PyO3 compatibility note: Templating-dependent extensions experiencing problems with the new pyo3 version need to either migrate their code or pin their pyo3 version by adding a manifest comment like this at the top of their rust source file(s):
// rustimport:pyo3
+ //: [dependencies]
+ //: pyo3.version = "0.21.2"
––snip––