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