17 lines
417 B
TOML
17 lines
417 B
TOML
|
[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" }
|