8 releases (4 breaking)

0.9.0 Apr 11, 2024
0.8.2 Feb 29, 2024
0.8.0 Dec 20, 2023
0.7.2 Nov 30, 2023
0.0.0 Jun 16, 2019

#274 in Operating systems

Download history 2/week @ 2024-01-14 3/week @ 2024-02-04 93/week @ 2024-02-11 63/week @ 2024-02-18 150/week @ 2024-02-25 65/week @ 2024-03-03 19/week @ 2024-03-10 3/week @ 2024-03-17 1/week @ 2024-03-24 25/week @ 2024-03-31 156/week @ 2024-04-07 26/week @ 2024-04-14

208 downloads per month

MIT/Apache

10KB
175 lines

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.

Dependencies

~0–1.4MB
~19K SLoC