20 lines
682 B
TOML
20 lines
682 B
TOML
[package]
|
|
name = "yggdrasil-abi"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Mark Poliakov <mark@alnyan.me>"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }
|
|
compiler_builtins = { version = "0.1", optional = true }
|
|
serde = { version = "1.0.193", features = ["derive"], default-features = false, optional = true }
|
|
bytemuck = { version = "1.14.0", features = ["derive"], optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
alloc = []
|
|
serde_kernel = ["serde", "serde/alloc"]
|
|
rustc-dep-of-std = ["core", "compiler_builtins/rustc-dep-of-std"]
|