Merge pull request #190 from svenstaro/patch-1

Update pyo3 version number
This commit is contained in:
konstin 2018-07-21 14:05:43 +02:00 committed by GitHub
commit 897716cf5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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"]
```