1[package]
2name = "target-lexicon"
3version = "0.12.14"
4authors = ["Dan Gohman <sunfish@mozilla.com>"]
5description = "Targeting utilities for compilers and related tools"
6documentation = "https://docs.rs/target-lexicon/"
7readme = "README.md"
8keywords = ["target", "host", "triple", "compiler", "jit"]
9categories = ["no-std"]
10license = "Apache-2.0 WITH LLVM-exception"
11repository = "https://github.com/bytecodealliance/target-lexicon"
12edition = "2018"
13
14[dependencies]
15serde = { version = "1.0", optional = true }
16
17[dev-dependencies]
18serde_json = "1.0"
19
20[features]
21default = []
22serde_support = ["serde", "std"]
23std = []
24# Enable (unstable) support for the zkasm architecture.
25arch_zkasm = []
26
27[badges]
28maintenance = { status = "passively-maintained" }
29