Replace wildcards in dependencies with a lower bound

This commit is contained in:
Philipp Oppermann
2015-11-13 18:05:03 +01:00
parent b9a35036e3
commit 6d05d4513c
3 changed files with 5 additions and 5 deletions

View File

@@ -131,7 +131,7 @@ Fortunately there already is a crate for that: [rlibc]. When we look at its [sou
```toml
...
[dependencies]
rlibc = "*"
rlibc = "0.1.4"
```
and an `extern crate` definition in our `src/lib.rs`: