1234567891011121314151617 |
- [package]
- name = "stdio"
- version = "0.1.0"
- authors = ["Jeremy Soller <jackpot51@gmail.com>"]
- build = "build.rs"
- [build-dependencies]
- cbindgen = { path = "../../cbindgen" }
- [dependencies]
- compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins.git", default-features = false, features = ["mem"] }
- platform = { path = "../platform" }
- va_list = { path = "../../va_list", features = ["no_std"] }
- fcntl = { path = "../fcntl" }
- string = { path = "../string" }
- stdlib = { path = "../stdlib" }
- errno = { path = "../errno"}
|