Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/cranelift/entity/Cargo.toml
1691 views
1
[package]
2
authors = ["The Cranelift Project Developers"]
3
name = "cranelift-entity"
4
version = "0.125.0"
5
description = "Data structures using entity references as mapping keys"
6
license = "Apache-2.0 WITH LLVM-exception"
7
documentation = "https://docs.rs/cranelift-entity"
8
repository = "https://github.com/bytecodealliance/wasmtime"
9
categories = ["no-std"]
10
readme = "README.md"
11
keywords = ["entity", "set", "map"]
12
edition.workspace = true
13
rust-version.workspace = true
14
15
[lints]
16
workspace = true
17
18
[dependencies]
19
cranelift-bitset = { workspace=true }
20
serde = { workspace = true, optional = true }
21
serde_derive = { workspace = true, optional = true }
22
23
[features]
24
enable-serde = ["serde", "serde_derive", "cranelift-bitset/enable-serde"]
25
26