yggdrasil/lib/abi-serde/Cargo.toml

21 lines
468 B
TOML
Raw Normal View History

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" }
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",
"rustc_std_alloc",
2025-01-09 19:35:58 +02:00
"compiler_builtins/rustc-dep-of-std",
]
[lints]
workspace = true