Skip to content

Commit 01128ce

Browse files
committed
Use pyo3 master
1 parent 0700061 commit 01128ce

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

examples/namespace_package/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ edition = "2018"
77
crate-type = ["cdylib"]
88

99
[dependencies.pyo3]
10-
version = "0.12.0"
10+
# version = "0.12.0"
11+
git = "https://github.com/pyo3/pyo3"
1112
features = ["extension-module"]

examples/rust_with_cffi/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ authors = ["Alex Gaynor <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
pyo3 = { version = "0.12.0", features = ["extension-module"] }
8+
# pyo3 = { version = "0.12.0", features = ["extension-module"] }
9+
pyo3 = { git = "https://github.com/pyo3/pyo3", features = ["extension-module"] }
910

1011
[lib]
1112
name = "rust_with_cffi"

html-py-ever/Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

html-py-ever/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ edition = "2018"
66

77
[dependencies]
88
kuchiki = "0.8.0"
9-
pyo3 = { version = "0.12.0", features = ["extension-module"] }
9+
# pyo3 = { version = "0.12.0", features = ["extension-module"] }
10+
pyo3 = { git = "https://github.com/pyo3/pyo3", features = ["extension-module"] }
1011
tendril = "0.4.1"
1112

1213
[lib]

0 commit comments

Comments
 (0)