Skip to content

Commit

Permalink
chore: change project name to efivar-rs
Browse files Browse the repository at this point in the history
  • Loading branch information
iTrooz committed Jan 16, 2024
1 parent 5dbb4e3 commit ad26695
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# efiboot-rs
# efivar-rs

[![Build Status](https://github.com/iTrooz/efiboot-rs/actions/workflows/build.yml/badge.svg)](https://github.com/iTrooz/efiboot-rs/actions/workflows/build.yml)
[![Build Status](https://github.com/iTrooz/efivar-rs/actions/workflows/build.yml/badge.svg)](https://github.com/iTrooz/efivar-rs/actions/workflows/build.yml)
[![Documentation](https://img.shields.io/badge/docs-main-blue.svg)](https://docs.rs/efivar/)
[![codecov](https://codecov.io/gh/iTrooz/efiboot-rs/branch/main/graph/badge.svg)](https://codecov.io/gh/iTrooz/efiboot-rs)
[![codecov](https://codecov.io/gh/iTrooz/efivar-rs/branch/main/graph/badge.svg)](https://codecov.io/gh/iTrooz/efivar-rs)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![Built with cargo-make](https://sagiegurari.github.io/cargo-make/assets/badges/cargo-make.svg)](https://sagiegurari.github.io/cargo-make)

Expand Down
4 changes: 2 additions & 2 deletions efivar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "1.4.0"
authors = ["Vincent Tavernier <[email protected]>", "iTrooz <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/iTrooz/efiboot-rs"
homepage = "https://github.com/iTrooz/efiboot-rs"
repository = "https://github.com/iTrooz/efivar-rs"
homepage = "https://github.com/iTrooz/efivar-rs"
documentation = "https://docs.rs/efivar"
keywords = ["efi"]
categories = []
Expand Down
2 changes: 1 addition & 1 deletion efivar/src/sys/linux/efivars.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ impl VarWriter for SystemManager {

fn delete(&mut self, _var: &Variable) -> crate::Result<()> {
// Unimplemented because I wasn't able to enable efivars sysfs on my system
unimplemented!("Variable deletion not supported on efivars sysfs. See https://github.com/iTrooz/efiboot-rs/issues/55");
unimplemented!("Variable deletion not supported on efivars sysfs. See https://github.com/iTrooz/efivar-rs/issues/55");
}
}

Expand Down
6 changes: 3 additions & 3 deletions efivarcli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ version = "1.4.0"
authors = ["Vincent Tavernier <[email protected]>", "iTrooz <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/iTrooz/efiboot-rs"
homepage = "https://github.com/iTrooz/efiboot-rs/tree/main/efiboot"
documentation = "https://docs.rs/efiboot"
repository = "https://github.com/iTrooz/efivar-rs"
homepage = "https://github.com/iTrooz/efivar-rs/tree/main/efivar"
documentation = "https://docs.rs/efivar"
keywords = ["efi"]
categories = []
description = "EFI boot manager variable editor written in Rust"
Expand Down

0 comments on commit ad26695

Please sign in to comment.