2024-03-09 16:42:07 +02:00
|
|
|
[package]
|
|
|
|
name = "abi-lib"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-10 13:19:12 +02:00
|
|
|
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",
|
|
|
|
]
|