2023-07-18 17:57:20 +03:00
|
|
|
[package]
|
|
|
|
name = "yggdrasil-abi"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-12-11 03:04:31 +02:00
|
|
|
authors = ["Mark Poliakov <mark@alnyan.me>"]
|
2023-07-18 17:57:20 +03:00
|
|
|
|
|
|
|
# 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 }
|
2023-12-28 22:33:39 +02:00
|
|
|
serde = { version = "1.0.193", features = ["derive"], optional = true }
|
2023-07-18 17:57:20 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2023-12-05 12:24:04 +02:00
|
|
|
alloc = []
|
|
|
|
rustc-dep-of-std = ["core", "compiler_builtins/rustc-dep-of-std"]
|