git-subtree-dir: tool/abi-generator git-subtree-mainline: 7a0d528cdabd0ff344911b64e447a21e40bcbeaa git-subtree-split: 635bf51bb1cde626d477df477604d58d107bc037
16 lines
321 B
TOML
16 lines
321 B
TOML
[package]
|
|
name = "abi-lib"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }
|
|
compiler_builtins = { version = "0.1", optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
rustc-dep-of-std = [
|
|
"core",
|
|
"compiler_builtins/rustc-dep-of-std",
|
|
]
|