2024-11-11 15:19:36 +02:00
|
|
|
[package]
|
|
|
|
name = "ygglibc"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["staticlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
yggdrasil-rt = { path = "../../../lib/runtime" }
|
|
|
|
yggdrasil-abi = { path = "../../../lib/abi", features = ["alloc", "bytemuck"] }
|
|
|
|
libyalloc = { path = "../../../lib/libyalloc" }
|
|
|
|
bitflags = "2.6.0"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
cbindgen = { git = "https://git.alnyan.me/yggdrasil/cbindgen.git", branch = "master" }
|
2024-11-12 11:14:29 +02:00
|
|
|
|
|
|
|
[lints.rust]
|
|
|
|
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(rust_analyzer)'] }
|