Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [package]
  2. name = "relibc"
  3. version = "0.1.0"
  4. authors = ["Jeremy Soller <jackpot51@gmail.com>"]
  5. [lib]
  6. name = "c"
  7. crate-type = ["staticlib"]
  8. [workspace]
  9. members = ["src/crt0"]
  10. [dependencies]
  11. compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins.git", default-features = false, features = ["mem"] }
  12. ctype = { path = "src/ctype" }
  13. errno = { path = "src/errno" }
  14. fcntl = { path = "src/fcntl" }
  15. fenv = { path = "src/fenv" }
  16. float = { path = "src/float" }
  17. grp = { path = "src/grp" }
  18. mman = { path = "src/mman" }
  19. platform = { path = "src/platform" }
  20. resource = { path = "src/resource" }
  21. semaphore = { path = "src/semaphore" }
  22. signal = { path = "src/signal" }
  23. stat = { path = "src/stat" }
  24. stdio = { path = "src/stdio" }
  25. stdlib = { path = "src/stdlib" }
  26. string = { path = "src/string" }
  27. sys_time = { path = "src/sys_time" }
  28. time = { path = "src/time" }
  29. unistd = { path = "src/unistd" }
  30. wait = { path = "src/wait" }
  31. wctype = { path = "src/wctype" }
  32. [profile.dev]
  33. panic = "abort"
  34. [profile.release]
  35. panic = "abort"