Skip to content

Commit

Permalink
Merge pull request #30 from mkroening/update-hermit
Browse files Browse the repository at this point in the history
chore: update Hermit dependency
  • Loading branch information
mkroening authored Mar 25, 2024
2 parents 5c796bf + 389c50b commit 90e966e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions examples/hermitrust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,5 @@ edition = "2018"
rftrace = { version = "0.2.0", path="../../rftrace" }
rftrace-frontend = { version = "0.1.0", path="../../rftrace-frontend" }


[target.'cfg(target_os = "hermit")'.dependencies]
#hermit-sys = {version="0.1.25", features=["instrument"]}
hermit-sys = {git="https://github.com/tlambertz/rusty-hermit", branch="master", features=["instrument", "with_submodule"]}
#hermit-sys = { path = "../../../rusty-hermit/hermit-sys", features = ["with_submodule", "instrument"] }
hermit = { version = "0.7", git = "https://github.com/hermit-os/hermit-rs" }
2 changes: 1 addition & 1 deletion examples/hermitrust/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ extern crate rftrace as _;
use rftrace_frontend as rftrace;

#[cfg(target_os = "hermit")]
extern crate hermit_sys;
extern crate hermit;

use std::thread;
use std::time::SystemTime;
Expand Down

0 comments on commit 90e966e

Please sign in to comment.