Skip to content

Commit 0da9ce2

Browse files
committed
Rename package to libhermit-rs
1 parent 4ad8d2c commit 0da9ce2

File tree

5 files changed

+30
-30
lines changed

5 files changed

+30
-30
lines changed

.github/workflows/doc.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ jobs:
3030
env:
3131
RUSTDOCFLAGS: -D warnings
3232
run: |
33-
cargo doc -Z build-std=core,alloc --package rusty-hermit --no-deps --document-private-items --target x86_64-unknown-none
34-
cargo doc -Z build-std=core,alloc --package rusty-hermit --no-deps --document-private-items --target aarch64-unknown-none-softfloat
33+
cargo doc -Z build-std=core,alloc --package libhermit-rs --no-deps --document-private-items --target x86_64-unknown-none
34+
cargo doc -Z build-std=core,alloc --package libhermit-rs --no-deps --document-private-items --target aarch64-unknown-none-softfloat

.github/workflows/publish_docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
sudo apt-get update
2222
sudo apt-get install nasm
2323
- name: Generate documentation
24-
run: cargo doc -Zbuild-std=core,alloc --target x86_64-unknown-none --package rusty-hermit
24+
run: cargo doc -Zbuild-std=core,alloc --target x86_64-unknown-none --package libhermit-rs
2525
- name: Generate index.html
2626
run: |
2727
cat > target/x86_64-unknown-none/doc/index.html <<EOL

Cargo.lock

+24-24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "rusty-hermit"
2+
name = "libhermit-rs"
33
version = "0.4.3"
44
authors = [
55
"Stefan Lankes <[email protected]>",
@@ -16,7 +16,7 @@ license = "MIT OR Apache-2.0"
1616
readme = "README.md"
1717
keywords = ["unikernel", "libos"]
1818
categories = ["os"]
19-
repository = "https://github.com/hermitcore/rusty-hermit"
19+
repository = "https://github.com/hermitcore/libhermit-rs"
2020
documentation = "https://hermitcore.github.io/libhermit-rs/hermit/"
2121
edition = "2021"
2222
description = "A Rust-based library operating system"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# RustyHermit: libhermit-rs
44

55
[![Documentation](https://img.shields.io/badge/docs-latest-blue.svg)](https://hermitcore.github.io/libhermit-rs/hermit/)
6-
[![License](https://img.shields.io/crates/l/rusty-hermit.svg)](https://img.shields.io/crates/l/rusty-hermit.svg)
6+
![License](https://img.shields.io/badge/license-MIT%2FApache--2.0-blue)
77
[![Slack Status](https://matrix.osbyexample.com:3008/badge.svg)](https://matrix.osbyexample.com:3008)
88

99
_libhermit-rs_ is the kernel of the [RustyHermit](https://github.com/hermitcore/rusty-hermit) unikernel project.

0 commit comments

Comments
 (0)