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]
|
2024-11-17 23:32:07 +02:00
|
|
|
yggdrasil-abi = { path = "../abi", features = ["alloc"] }
|
2023-07-18 18:05:50 +03:00
|
|
|
|
|
|
|
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 }
|
2024-03-18 19:34:03 +02:00
|
|
|
libm = { git = "https://git.alnyan.me/yggdrasil/libm.git", optional = true }
|
2023-07-18 18:05:50 +03:00
|
|
|
|
2024-03-12 18:17:47 +02:00
|
|
|
abi-lib = { path = "../abi-lib" }
|
2024-03-12 13:49:02 +02:00
|
|
|
|
2023-12-28 10:39:47 +02:00
|
|
|
[build-dependencies]
|
2024-03-12 18:17:47 +02:00
|
|
|
abi-generator = { path = "../../tool/abi-generator" }
|
2024-03-12 13:49:02 +02:00
|
|
|
prettyplease = "0.2.15"
|
2023-12-28 10:39:47 +02:00
|
|
|
cc = "*"
|
|
|
|
|
2023-07-18 18:05:50 +03:00
|
|
|
[features]
|
|
|
|
default = []
|
2024-11-17 23:32:07 +02:00
|
|
|
__tls_get_addr = []
|
2023-07-18 18:05:50 +03:00
|
|
|
rustc-dep-of-std = [
|
|
|
|
"core",
|
|
|
|
"alloc",
|
|
|
|
"compiler_builtins/rustc-dep-of-std",
|
2024-01-28 01:02:18 +02:00
|
|
|
"yggdrasil-abi/rustc-dep-of-std",
|
2024-03-18 19:34:03 +02:00
|
|
|
"abi-lib/rustc-dep-of-std",
|
|
|
|
"libm/rustc-dep-of-std"
|
2023-07-18 18:05:50 +03:00
|
|
|
]
|