Update interpolate_idents to my fork (adjusted for currently Rust nightlies).

Update libc to 0.2.
This commit is contained in:
Daniel Grunwald 2015-11-07 17:10:20 +01:00
parent c1682b68ac
commit e935111c9c
4 changed files with 7 additions and 7 deletions

View File

@ -25,9 +25,9 @@ exclude = [
build = "build.rs"
[dependencies]
libc = "0.1"
libc = "0.2"
num = "0.1"
interpolate_idents = ">=0.0.4"
interpolate_idents = { git = "https://github.com/dgrunwald/interpolate_idents.git" }
abort_on_panic = "1.0"
# These features are both optional, but you must pick one to

View File

@ -22,11 +22,11 @@ Supported Rust version:
# Usage
[`cpython` is available on crates.io](https://crates.io/crates/cpython) so you can use it like this (in your `Cargo.toml`):
To use `cpython`, add this to your `Cargo.toml`:
```toml
[dependencies.cpython]
version = "*"
[dependencies]
cpython = { git = "https://github.com/dgrunwald/cpython.git" }
```
Example program displaying the value of `sys.version`:

View File

@ -20,7 +20,7 @@ exclude = [
]
[dependencies]
libc = "0.1"
libc = "0.2"
[build-dependencies]
pkg-config = "0.3.5"

View File

@ -20,7 +20,7 @@ exclude = [
]
[dependencies]
libc = "0.1"
libc = "0.2"
[build-dependencies]
regex = "0.1.8"