[dependencies.arbitrary]
optional = true
version = "1.4.0"
[dependencies.serde]
default-features = false
features = ["alloc"]
optional = true
version = "1.0.215"
[dependencies.serde_derive]
optional = true
version = "1.0.188"
[features]
arbitrary = ["dep:arbitrary"]
enable-serde = ["dep:serde", "dep:serde_derive"]
[lib]
name = "cranelift_bitset"
path = "src/lib.rs"
[lints.clippy]
allow_attributes_without_reason = "warn"
clone_on_copy = "warn"
manual_strip = "warn"
map_clone = "warn"
uninlined_format_args = "warn"
unnecessary_cast = "warn"
unnecessary_fallible_conversions = "warn"
unnecessary_mut_passed = "warn"
unnecessary_to_owned = "warn"
[lints.clippy.all]
level = "allow"
priority = -1
[lints.rust]
deprecated-safe-2024 = "warn"
impl-trait-overcaptures = "warn"
keyword_idents_2024 = "warn"
missing-unsafe-on-extern = "warn"
rust-2024-guarded-string-incompatible-syntax = "warn"
rust-2024-incompatible-pat = "warn"
rust-2024-prelude-collisions = "warn"
trivial_numeric_casts = "warn"
unsafe-attr-outside-unsafe = "warn"
unstable_features = "warn"
unused-lifetimes = "warn"
unused-macro-rules = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"
[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(pulley_tail_calls)", "cfg(pulley_assume_llvm_makes_tail_calls)"]
level = "warn"
priority = 0
[package]
authors = ["The Cranelift Project Developers"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Various bitset stuff for use inside Cranelift"
documentation = "https://docs.rs/cranelift-bitset"
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
name = "cranelift-bitset"
readme = false
repository = "https://github.com/bytecodealliance/wasmtime"
rust-version = "1.82.0"
version = "0.117.0"
[[test]]
name = "bitset"
path = "tests/bitset.rs"