2025-01-09 19:35:58 +02:00
|
|
|
[package]
|
|
|
|
name = "abi-serde"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
compiler_builtins = { version = "0.1", optional = true }
|
|
|
|
core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }
|
2025-01-16 18:06:00 +02:00
|
|
|
rustc_std_alloc = { version = "1.0.0", optional = true, package = "rustc-std-workspace-alloc" }
|
2025-01-09 19:35:58 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
rustc-dep-of-std = [
|
|
|
|
"core",
|
2025-01-16 18:06:00 +02:00
|
|
|
"rustc_std_alloc",
|
2025-01-09 19:35:58 +02:00
|
|
|
"compiler_builtins/rustc-dep-of-std",
|
|
|
|
]
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|