Skip to content
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

Update wit-component's bitflags dependency #1123

Merged
merged 1 commit into from Jul 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/wit-component/Cargo.toml
Expand Up @@ -19,7 +19,7 @@ wasm-metadata = { workspace = true }
wit-parser = { workspace = true }
anyhow = { workspace = true }
log = "0.4.17"
bitflags = "1.3.2"
bitflags = "2.3.3"
indexmap = { workspace = true }
wat = { workspace = true, optional = true }

Expand Down
1 change: 1 addition & 0 deletions crates/wit-component/src/encoding.rs
Expand Up @@ -109,6 +109,7 @@ fn to_val_type(ty: &WasmType) -> ValType {
bitflags::bitflags! {
/// Options in the `canon lower` or `canon lift` required for a particular
/// function.
#[derive(Copy, Clone, Debug)]
pub struct RequiredOptions: u8 {
/// A memory must be specified, typically the "main module"'s memory
/// export.
Expand Down