[package] name = "yggdrasil-rt" version = "0.1.0" edition = "2021" authors = ["Mark Poliakov "] build = "build.rs" [dependencies] yggdrasil-abi = { git = "https://git.alnyan.me/yggdrasil/yggdrasil-abi.git", features = ["rustc_std_alloc"] } 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 } [build-dependencies] cc = "*" [features] default = [] rustc-dep-of-std = [ "core", "alloc", "compiler_builtins/rustc-dep-of-std", "yggdrasil-abi/rustc-dep-of-std", ]