Specify crates.io versions

This commit is contained in:
Jeremy Soller
2017-01-13 15:09:56 -07:00
parent 35c2297724
commit 04d9d6b40a
3 changed files with 9 additions and 9 deletions

View File

@@ -8,9 +8,9 @@ path = "src/lib.rs"
crate-type = ["staticlib"]
[dependencies]
bitflags = "*"
spin = "*"
redox_syscall = { git = "https://github.com/redox-os/syscall.git" }
bitflags = "0.7"
spin = "0.4"
redox_syscall = "0.1"
[dependencies.goblin]
git = "https://github.com/m4b/goblin.git"

View File

@@ -4,5 +4,5 @@ version = "0.1.0"
[dependencies]
alloc_kernel = { path = "../../alloc_kernel" }
bitflags = "*"
spin = "*"
bitflags = "0.7"
spin = "0.4"

View File

@@ -4,10 +4,10 @@ version = "0.1.0"
[dependencies]
alloc_kernel = { path = "../../alloc_kernel/" }
bitflags = "*"
raw-cpuid = { git = "https://github.com/gz/rust-cpuid" }
spin = "*"
redox_syscall = { git = "https://github.com/redox-os/syscall" }
bitflags = "0.7"
raw-cpuid = "2.0"
spin = "0.4"
redox_syscall = "0.1"
[dependencies.x86]
version = "0.7"