Skip to content
Snippets Groups Projects
Commit 649a9601b9e2 authored by Yuya Nishihara's avatar Yuya Nishihara
Browse files

rust-cpython: drop direct dependency on python(27|3)_sys

We no longer use it.
parent 0246bbe1045d
No related merge requests found
......@@ -66,8 +66,6 @@
"cpython 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"hg-core 0.1.0",
"libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
"python27-sys 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"python3-sys 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
......
......@@ -11,8 +11,5 @@
[features]
default = ["python27"]
python27 = ["cpython/python27-sys",
"cpython/extension-module-2-7",
"python27-sys",
]
python27 = ["cpython/python27-sys", "cpython/extension-module-2-7"]
......@@ -18,5 +15,5 @@
python3 = ["python3-sys", "cpython/python3-sys", "cpython/extension-module"]
python3 = ["cpython/python3-sys", "cpython/extension-module"]
[dependencies]
hg-core = { path = "../hg-core" }
......@@ -25,11 +22,3 @@
[dependencies.cpython]
version = "0.3"
default-features = false
[dependencies.python27-sys]
version = "0.3"
optional = true
[dependencies.python3-sys]
version = "0.3"
optional = true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment