Skip to content

Commit

Permalink
build(deps): Bump hermit from 0.8.0 to 0.8.1 in /tests/test-kernels
Browse files Browse the repository at this point in the history
Bumps [hermit](https://github.com/hermit-os/hermit-rs) from 0.8.0 to 0.8.1.
- [Release notes](https://github.com/hermit-os/hermit-rs/releases)
- [Commits](hermit-os/hermit-rs@hermit-0.8.0...hermit-0.8.1)

---
updated-dependencies:
- dependency-name: hermit
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and mkroening committed Feb 19, 2024
1 parent e702112 commit 4a341da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/test-kernels/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/test-kernels/src/bin/create_file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ use std::{fs::File, io::prelude::*};
use hermit as _;

fn main() {
let mut file = File::create("foo.txt").unwrap();
let mut file = File::create("/tmp/foo.txt").unwrap();
file.write_all(b"Hello, world!").unwrap();
}

0 comments on commit 4a341da

Please sign in to comment.