From 59b7e0fc2dac9ba8a33a63e8f56a567df717e5d1 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Fri, 20 Jul 2018 00:39:42 +0200 Subject: [PATCH] Update pyo3 version umber --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b4c9e691..0640386f 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ To use `pyo3`, add this to your `Cargo.toml`: ```toml [dependencies] -pyo3 = "0.2" +pyo3 = "0.3" ``` Example program displaying the value of `sys.version`: @@ -62,7 +62,7 @@ name = "rust2py" crate-type = ["cdylib"] [dependencies.pyo3] -version = "0.2" +version = "0.3" features = ["extension-module"] ```