22 lines
615 B
TOML
Raw Normal View History

2024-11-11 15:19:36 +02:00
[package]
name = "ygglibc"
version = "0.1.0"
edition = "2021"
[lib]
2024-11-12 17:07:06 +02:00
crate-type = ["cdylib", "staticlib"]
2024-11-11 15:19:36 +02:00
[dependencies]
2024-11-17 23:32:07 +02:00
yggdrasil-rt = { path = "../../../lib/runtime", features = ["__tls_get_addr"] }
2024-11-11 15:19:36 +02:00
yggdrasil-abi = { path = "../../../lib/abi", features = ["alloc", "bytemuck"] }
libyalloc = { path = "../../../lib/libyalloc" }
2024-11-12 17:07:06 +02:00
2024-11-11 15:19:36 +02:00
bitflags = "2.6.0"
2024-11-12 17:07:06 +02:00
chrono = { version = "0.4.31", default-features = false }
2024-11-11 15:19:36 +02:00
[build-dependencies]
2024-11-28 20:22:03 +02:00
cbindgen = { git = "https://git.alnyan.me/yggdrasil/cbindgen.git", branch = "alnyan/yggdrasil" }
2024-11-12 11:14:29 +02:00
[lints.rust]
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(rust_analyzer)'] }