1[package] 2name = "libc" 3version = "0.1.0" 4edition = "2021" 5 6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7[lib] 8crate-type = ["staticlib"] 9 10# 运行时依赖项 11[dependencies] 12x86_64 = "0.14.10" 13 14# 构建时依赖项 15[build-dependencies] 16bindgen = "0.61.0" 17 18 19