Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/cranelift/bitset/Cargo.toml
1692 views
1
[package]
2
authors = ["The Cranelift Project Developers"]
3
name = "cranelift-bitset"
4
version = "0.125.0"
5
description = "Various bitset stuff for use inside Cranelift"
6
license = "Apache-2.0 WITH LLVM-exception"
7
documentation = "https://docs.rs/cranelift-bitset"
8
repository = "https://github.com/bytecodealliance/wasmtime"
9
edition.workspace = true
10
rust-version.workspace = true
11
12
[lints]
13
workspace = true
14
15
[dependencies]
16
arbitrary = { workspace = true, optional = true }
17
serde = { workspace = true, optional = true }
18
serde_derive = { workspace = true, optional = true }
19
20
[features]
21
enable-serde = ["dep:serde", "dep:serde_derive"]
22
arbitrary = ["dep:arbitrary"]
23
24