Cargo.toml 545 B

1234567891011121314151617
  1. [package]
  2. name = "stdio"
  3. version = "0.1.0"
  4. authors = ["Jeremy Soller <jackpot51@gmail.com>"]
  5. build = "build.rs"
  6. [build-dependencies]
  7. cbindgen = { path = "../../cbindgen" }
  8. [dependencies]
  9. compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins.git", default-features = false, features = ["mem"] }
  10. platform = { path = "../platform" }
  11. va_list = { path = "../../va_list", features = ["no_std"] }
  12. fcntl = { path = "../fcntl" }
  13. string = { path = "../string" }
  14. stdlib = { path = "../stdlib" }
  15. errno = { path = "../errno"}