From c46487ff55af83e0d40b880e07201167214e8b7a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Feb 2022 13:06:57 +0000 Subject: [PATCH] Update pyo3 requirement from 0.15 to 0.16 Updates the requirements on [pyo3](https://github.com/pyo3/pyo3) to permit the latest version. - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md) - [Commits](https://github.com/pyo3/pyo3/compare/v0.15.0...v0.16.0) --- updated-dependencies: - dependency-name: pyo3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- instant-distance-py/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instant-distance-py/Cargo.toml b/instant-distance-py/Cargo.toml index dadd01e..9f12232 100644 --- a/instant-distance-py/Cargo.toml +++ b/instant-distance-py/Cargo.toml @@ -17,7 +17,7 @@ crate-type = ["cdylib"] [dependencies] bincode = "1.3.1" instant-distance = { version = "0.5", path = "../instant-distance", features = ["with-serde"] } -pyo3 = { version = "0.15", features = ["extension-module"] } +pyo3 = { version = "0.16", features = ["extension-module"] } serde = { version = "1", features = ["derive"] } serde-big-array = "0.3.2"