diff --git a/.cargo/config b/.cargo/config deleted file mode 100644 index 8e2e60bf..00000000 --- a/.cargo/config +++ /dev/null @@ -1,2 +0,0 @@ -paths = ["python27-sys", "python3-sys"] - diff --git a/Cargo.toml b/Cargo.toml index 33421993..c79d3db6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cpython" -version = "0.0.4" +version = "0.0.5" description = "Bindings to Python" authors = ["Daniel Grunwald "] readme = "README.md" @@ -27,7 +27,7 @@ build = "build.rs" [dependencies] libc = "0.2" num = "0.1" -interpolate_idents = { git = "https://github.com/dgrunwald/interpolate_idents.git" } +interpolate_idents = ">=0.0.7" abort_on_panic = "1.0" # These features are both optional, but you must pick one to @@ -35,10 +35,12 @@ abort_on_panic = "1.0" [dependencies.python27-sys] optional = true path = "python27-sys" +version = "0.1.1" [dependencies.python3-sys] optional = true path = "python3-sys" +version = "0.1.2" [features] default = ["python3-sys"]