1[package]
2authors = ["The Cranelift Project Developers"]
3name = "cranelift-codegen-shared"
4version = "0.76.0"
5description = "For code shared between cranelift-codegen-meta and cranelift-codegen"
6license = "Apache-2.0 WITH LLVM-exception"
7repository = "https://github.com/bytecodealliance/wasmtime"
8readme = "README.md"
9edition = "2018"
10
11[dependencies]
12# Since this is a shared dependency of several packages, please strive to keep this dependency-free
13# when no features are enabled.
14serde = { version = "1.0.94", features = ["derive"], optional = true }
15
16[features]
17enable-serde = ["serde"]
18