16 lines
509 B
TOML
16 lines
509 B
TOML
|
[package]
|
||
|
name = "yggdrasil-abi"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# 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" }
|
||
|
alloc = { version = "1.0.0", optional = true, package = "rustc-std-workspace-alloc" }
|
||
|
compiler_builtins = { version = "0.1", optional = true }
|
||
|
|
||
|
[features]
|
||
|
default = []
|
||
|
rustc-dep-of-std = ["core", "alloc", "compiler_builtins/rustc-dep-of-std"]
|