From c64707ef7c0ca625848e16e018c8da5c42722600 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Jul 2021 10:02:37 +0000 Subject: [PATCH] Update pyo3 requirement from 0.13 to 0.14 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.13.0...v0.14.1) --- updated-dependencies: - dependency-name: pyo3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- python/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/Cargo.toml b/python/Cargo.toml index 40045c9e..46bad11d 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -17,7 +17,7 @@ doctest = false [dependencies] oxigraph = {version = "0.2", path="../lib", features = ["sled", "http_client"]} -pyo3 = {version = "0.13", features = ["extension-module", "abi3-py36"]} +pyo3 = {version = "0.14", features = ["extension-module", "abi3-py36"]} native-tls = {version = "0.2", features = ["vendored"]} [package.metadata.maturin]