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

Introduce the cranelift-bitset crate; use it for stack maps in both Cranelift and Wasmtime #8826

Merged
merged 11 commits into from
Jun 18, 2024
10 changes: 10 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ cranelift-object = { path = "cranelift/object", version = "0.110.0" }
cranelift-jit = { path = "cranelift/jit", version = "0.110.0" }
cranelift-fuzzgen = { path = "cranelift/fuzzgen" }
cranelift-bforest = { path = "cranelift/bforest", version = "0.110.0" }
cranelift-bitset = { path = "cranelift/bitset", version = "0.110.0" }
cranelift-control = { path = "cranelift/control", version = "0.110.0" }
cranelift = { path = "cranelift/umbrella", version = "0.110.0" }

Expand Down
20 changes: 20 additions & 0 deletions cranelift/bitset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-bitset"
version = "0.110.0"
description = "Various bitset stuff for use inside Cranelift"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-bitset"
repository = "https://github.com/bytecodealliance/wasmtime"
readme = "README.md"
edition.workspace = true

[lints]
workspace = true

[dependencies]
serde = { workspace = true, optional = true }
serde_derive = { workspace = true, optional = true }

[features]
enable-serde = ["dep:serde", "dep:serde_derive"]
Loading