-
Notifications
You must be signed in to change notification settings - Fork 166
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
fix: enable wasip2 feature for wasm32-wasip2 target #1205
fix: enable wasip2 feature for wasm32-wasip2 target #1205
Conversation
Signed-off-by: Colin Murphy <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Just one comment:
Cargo.toml
Outdated
@@ -13,7 +13,7 @@ edition = "2021" | |||
keywords = ["api", "file", "network", "safe", "syscall"] | |||
categories = ["os::unix-apis", "date-and-time", "filesystem", "network-programming"] | |||
include = ["src", "build.rs", "Cargo.toml", "COPYRIGHT", "LICENSE*", "/*.md", "benches"] | |||
rust-version = "1.63" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you revert this rust-version
change? It isn't practical for us to bump the MSRV for all rustix users. Since wasip2 is a new target, I think we can just leave rust-version at 1.63 and just expect people using wasip2 to use the lastest Rust version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change pushed.
Thanks! |
* fix: enable wasip2 feature for wasm32-wasip2 target Signed-off-by: Colin Murphy <[email protected]> * Do not change MSRV --------- Signed-off-by: Colin Murphy <[email protected]>
* fix: enable wasip2 feature for wasm32-wasip2 target Signed-off-by: Colin Murphy <[email protected]> * Do not change MSRV --------- Signed-off-by: Colin Murphy <[email protected]>
This is now released in rustix 0.38.39. |
- wasip2 will require +nightly until rust-lang/rust#130323 is resolved and/or std::os::wasip2 is available in stable. - Support was added to rustix for version 0.38.39 bytecodealliance/rustix#1205 Signed-off-by: Colin Murphy <[email protected]> Co-authored-by: Steven Allen <[email protected]>
- wasip2 will require +nightly until rust-lang/rust#130323 is resolved and/or std::os::wasip2 is available in stable. - Support was added to rustix for version 0.38.39 bytecodealliance/rustix#1205 - Support was added to tempfile for version 3.14 Stebalien/tempfile#305
- wasip2 will require +nightly until rust-lang/rust#130323 is resolved and/or std::os::wasip2 is available in stable. - Support was added to rustix for version 0.38.39 bytecodealliance/rustix#1205 - Support was added to tempfile for version 3.14 Stebalien/tempfile#305
std::os::wasip2
is available in stable. (please correct me if I'm wrong about that)