Skip to content

Commit 2f16ae5

Browse files
committed
clippy
Signed-off-by: Jorge Prendes <jorge.prendes@gmail.com>
1 parent 281e925 commit 2f16ae5

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@ And there's no need for any extra configuration.
1212
Your binary, or any of its dependencies, can have a `build.rs` script using `cc` and `bindgen` to compile C code and generate bindings.
1313
They will work out of the box!
1414

15-
> [!NOTE]
15+
> [!NOTE]
1616
> Your crate **must** have `hyperlight-guest-bin` as a transitive dependency.
1717
18+
> [!WARNING]
19+
> This is an unofficial tool, not maintained by the hyperlight team.
20+
1821
## Installation
1922

2023
```sh

src/sysroot.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ pub fn build(args: &Args) -> Result<()> {
3333
Some([("gnu-lld".to_string(), vec!["-znostart-stop-gc".to_string()])].into());
3434
spec
3535
}
36-
triplet => bail!("Unsupported target triple: {triplet:?}
36+
triplet => bail!(
37+
"Unsupported target triple: {triplet:?}
3738
Supported values are:
38-
* x86_64-hyperlight-none"),
39+
* x86_64-hyperlight-none"
40+
),
3941
};
4042

4143
let sysroot_dir = args.sysroot_dir();

0 commit comments

Comments
 (0)