From 04d9d6b40a8fbd5e21200dabfdaa128a4c809727 Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jackpot51@gmail.com> Date: Fri, 13 Jan 2017 15:09:56 -0700 Subject: [PATCH] Specify crates.io versions --- Cargo.toml | 6 +++--- arch/arm/Cargo.toml | 4 ++-- arch/x86_64/Cargo.toml | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 80aec98e..765991ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/arch/arm/Cargo.toml b/arch/arm/Cargo.toml index 8a7e5cb6..3ad97bad 100644 --- a/arch/arm/Cargo.toml +++ b/arch/arm/Cargo.toml @@ -4,5 +4,5 @@ version = "0.1.0" [dependencies] alloc_kernel = { path = "../../alloc_kernel" } -bitflags = "*" -spin = "*" +bitflags = "0.7" +spin = "0.4" diff --git a/arch/x86_64/Cargo.toml b/arch/x86_64/Cargo.toml index bda357c4..635906d8 100644 --- a/arch/x86_64/Cargo.toml +++ b/arch/x86_64/Cargo.toml @@ -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" -- GitLab