yggdrasil/Cargo.toml

26 lines
636 B
TOML
Raw Normal View History

2023-07-18 18:05:50 +03:00
[package]
name = "yggdrasil-rt"
version = "0.1.0"
edition = "2021"
2023-12-11 03:06:18 +02:00
authors = ["Mark Poliakov <mark@alnyan.me>"]
2023-12-28 10:39:47 +02:00
build = "build.rs"
2023-07-18 18:05:50 +03:00
[dependencies]
yggdrasil-abi = { git = "https://git.alnyan.me/yggdrasil/yggdrasil-abi.git" }
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 }
2023-12-28 10:39:47 +02:00
[build-dependencies]
cc = "*"
2023-07-18 18:05:50 +03:00
[features]
default = []
rustc-dep-of-std = [
"core",
"alloc",
"compiler_builtins/rustc-dep-of-std",
"yggdrasil-abi/rustc-dep-of-std"
]