Mark Poliakov d9b70439b8 Add 'tool/abi-generator/' from commit '635bf51bb1cde626d477df477604d58d107bc037'
git-subtree-dir: tool/abi-generator
git-subtree-mainline: 7a0d528cdabd0ff344911b64e447a21e40bcbeaa
git-subtree-split: 635bf51bb1cde626d477df477604d58d107bc037
2024-03-12 16:13:37 +02:00

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",
]