diff --git a/uefi-services/Cargo.toml b/uefi-services/Cargo.toml index 43cd9ba30..c985cdb2f 100644 --- a/uefi-services/Cargo.toml +++ b/uefi-services/Cargo.toml @@ -1,15 +1,24 @@ [package] name = "uefi-services" -version = "0.2.0" +version = "0.1.0" authors = ["Gabriel Majeri "] -publish = false edition = "2018" +description = "Higher-level utilities for uefi-rs" +repository = "https://github.com/rust-osdev/uefi-rs" +keywords = ["uefi", "efi"] +categories = ["embedded", "no-std", "api-bindings"] +license = "MPL-2.0" + +[badges] +travis-ci = { repository = "rust-osdev/uefi-rs" } +is-it-maintained-issue-resolution = { repository = "rust-osdev/uefi-rs" } +is-it-maintained-open-issues = { repository = "rust-osdev/uefi-rs" } [dependencies] rlibc = "1.0.0" x86_64 = "0.7.5" -uefi = { path = "..", features = ["alloc", "logger"] } +uefi = { version = "0.3.2", features = ["alloc", "logger"] } log = { version = "0.4.8", default-features = false } [features]