8000 Redesign the interface to the unikernel HermitCore by stlankes · Pull Request #65167 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Redesign the interface to the unikernel HermitCore #65167

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Oct 26, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove hermit-abi from the wrong list, add to the whitelist
  • Loading branch information
stlankes committed Oct 21, 2019
commit 8a11c61a7af9ffa6585ee93b266e02fa1d642ba8
2 changes: 1 addition & 1 deletion src/tools/tidy/src/deps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ const EXCEPTIONS: &[&str] = &[
"constant_time_eq", // CC0-1.0, rustfmt
"utf8parse", // Apache-2.0 OR MIT, cargo via strip-ansi-escapes
"vte", // Apache-2.0 OR MIT, cargo via strip-ansi-escapes
"hermit-abi", // Apache-2.0 OR MIT
"sized-chunks", // MPL-2.0+, cargo via im-rc
// FIXME: this dependency violates the documentation comment above:
"fortanix-sgx-abi", // MPL-2.0+, libstd but only for `sgx` target
Expand Down Expand Up @@ -182,6 +181,7 @@ const WHITELIST: &[Crate<'_>] = &[
Crate("winapi-util"),
Crate("winapi-x86_64-pc-windows-gnu"),
Crate("wincolor"),
Crate("hermit-abi"),
];

// Some types for Serde to deserialize the output of `cargo metadata` to.
Expand Down
0