diff options
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | x86test/Cargo.toml | 10 | ||||
-rw-r--r-- | x86test/x86test_macro/Cargo.toml | 4 |
3 files changed, 8 insertions, 8 deletions
@@ -62,7 +62,7 @@ default-features = false # So phf uses libcore instead of libstd optional = true [target.'cfg(target_family = "unix")'.dev-dependencies] -klogger = { version = "0.0.8", features = ["use_ioports"] } +klogger = { version = "0.0.9", features = ["use_ioports"] } x86test = { path = "x86test" } libc = "0.2.*" diff --git a/x86test/Cargo.toml b/x86test/Cargo.toml index 96cbc09..dcc6197 100644 --- a/x86test/Cargo.toml +++ b/x86test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "x86test" -version = "0.0.3" +version = "0.0.4" authors = ["Gerd Zellweger <mail@gerdzellweger.com>"] repository = "https://github.com/gz/rust-x86" @@ -16,10 +16,10 @@ Custom test runner for bare-metal x86 tests. """ [dependencies] -x86test-macro = { path = "x86test_macro" } -x86test-types = { path = "x86test_types" } +x86test-macro = { path = "x86test_macro", version = "0.0.4" } +x86test-types = { path = "x86test_types", version = "0.0.4" } kvm-sys = "0.3.0" -x86 = { path = ".." } +x86 = { version = "0.45" } mmap = "0.1.1" log = "0.4" -klogger = { version = "0.0.8", features = ["use_ioports"] } +klogger = { version = "0.0.9", features = ["use_ioports"] } diff --git a/x86test/x86test_macro/Cargo.toml b/x86test/x86test_macro/Cargo.toml index bc9ed5e..b8e0e7a 100644 --- a/x86test/x86test_macro/Cargo.toml +++ b/x86test/x86test_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "x86test-macro" -version = "0.0.3" +version = "0.0.4" authors = ["Gerd Zellweger <mail@gerdzellweger.com>"] repository = "https://github.com/gz/rust-x86" @@ -18,7 +18,7 @@ Procedural macro plugin for x86test. syn = { version = "0.15", features = ["full", "extra-traits"] } quote = "0.6" proc-macro2 = "0.4" -x86test-types = { path = "../x86test_types", version = "0.0.3" } +x86test-types = { path = "../x86test_types", version = "0.0.4" } [lib] proc-macro = true |