From ec44765fff450ca187d175984ca2da43da4e1ca8 Mon Sep 17 00:00:00 2001 From: Gabriel Majeri Date: Sat, 28 Mar 2020 08:21:20 +0200 Subject: [PATCH] Publish new versions of the crates --- Cargo.toml | 2 +- uefi-services/Cargo.toml | 4 ++-- uefi-test-runner/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bb32ab30..c948ff58 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uefi" -version = "0.4.3" +version = "0.4.4" authors = ["Gabriel Majeri "] readme = "README.md" edition = "2018" diff --git a/uefi-services/Cargo.toml b/uefi-services/Cargo.toml index 14bc9d59..aef43008 100644 --- a/uefi-services/Cargo.toml +++ b/uefi-services/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uefi-services" -version = "0.2.1" +version = "0.2.2" authors = ["Gabriel Majeri "] edition = "2018" description = "Higher-level utilities for uefi-rs" @@ -18,7 +18,7 @@ is-it-maintained-open-issues = { repository = "rust-osdev/uefi-rs" } rlibc = "1.0.0" x86_64 = "0.8.3" -uefi = { version = "0.4.2", features = ["alloc", "logger"] } +uefi = { version = "0.4.4", features = ["alloc", "logger"] } log = { version = "0.4.8", default-features = false } [features] diff --git a/uefi-test-runner/Cargo.toml b/uefi-test-runner/Cargo.toml index a28a7069..a18f62a0 100644 --- a/uefi-test-runner/Cargo.toml +++ b/uefi-test-runner/Cargo.toml @@ -6,8 +6,8 @@ publish = false edition = "2018" [dependencies] -uefi = { version = "0.4.2", features = ['exts'] } -uefi-services = "0.2.0" +uefi = { path = "..", features = ['exts'] } +uefi-services = { path = "../uefi-services" } log = { version = "0.4.8", default-features = false }