hermit

Crates.iohermit
lib.rshermit
version0.11.0
created_at2019-06-16 09:25:53.724092+00
updated_at2025-03-25 09:33:03.627307+00
descriptionThe Hermit unikernel for Rust.
homepage
repositoryhttps://github.com/hermit-os/hermit-rs
max_upload_size
id141490
size57,050
Martin Kröning (mkroening)

documentation

README

Hermit for Rust

Crates.io docs.rs

This crate builds and links against the Hermit kernel to create a Hermit unikernel image.

Building

  1. Add the following to your Cargo.toml:

    [target.'cfg(target_os = "hermit")'.dependencies]
    hermit = "0.6"
    
  2. Add the following to your main.rs:

    #[cfg(target_os = "hermit")]
    use hermit as _;
    
  3. Build against one of the *-unknown-hermit targets.

    Either

    or

    • use -Zbuild-std=std,panic_abort on nightly Rust.

Running

You can boot the resulting image in the specialized Uhyve unikernel hypervisor or on other platforms like QEMU using the Hermit loader.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 1954

cargo fmt