19 lines
409 B
TOML
19 lines
409 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",
|
|
]
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(rust_analyzer)'] }
|