2
0

Cargo.toml 463 B

123456789101112131415161718
  1. [package]
  2. name = "stdlib"
  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. platform = { path = "../platform" }
  10. ctype = { path = "../ctype" }
  11. errno = { path = "../errno" }
  12. rand = { version = "0.5.2", default-features = false }
  13. string = { path = "../string" }
  14. time = { path = "../time" }
  15. unistd = { path = "../unistd" }
  16. wchar = { path = "../wchar" }