Add version in Cargo.toml

Following https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-path-dependencies, we need a version for path dependencies
This commit is contained in:
konstin 2018-05-01 20:25:13 +02:00
parent cb6c287f1f
commit 2fcac85003
3 changed files with 4 additions and 3 deletions

View file

@ -23,7 +23,7 @@ log = "0.4"
libc = "0.2"
spin = "0.4.6"
num-traits = "0.2"
pyo3cls = { path = "pyo3cls", version = "^0.2.1" }
pyo3cls = { path = "pyo3cls", version = "0.2.5" }
[build-dependencies]
regex = "0.2"

View file

@ -1,6 +1,6 @@
[package]
name = "pyo3-derive-backend"
version = "0.2.1"
version = "0.2.5"
description = "Code generation for PyO3 package"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3"]
homepage = "https://github.com/pyo3/pyo3"

View file

@ -1,6 +1,6 @@
[package]
name = "pyo3cls"
version = "0.2.1"
version = "0.2.5"
description = "Proc macros for PyO3 package"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3"]
homepage = "https://github.com/pyo3/pyo3"
@ -21,3 +21,4 @@ features=["full"]
[dependencies.pyo3-derive-backend]
path = "../pyo3-derive-backend"
version = "0.2.5"