Cargo.toml 811 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "relibc"
  3. version = "0.1.0"
  4. authors = ["Jeremy Soller <[email protected]>"]
  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. platform = { path = "src/platform" }
  13. ctype = { path = "src/ctype" }
  14. errno = { path = "src/errno" }
  15. fcntl = { path = "src/fcntl" }
  16. grp = { path = "src/grp" }
  17. semaphore = { path = "src/semaphore" }
  18. mman = { path = "src/mman" }
  19. stat = { path = "src/stat" }
  20. stdio = { path = "src/stdio" }
  21. stdlib = { path = "src/stdlib" }
  22. string = { path = "src/string" }
  23. unistd = { path = "src/unistd" }
  24. wctype = { path = "src/wctype" }
  25. [profile.dev]
  26. panic = "abort"
  27. [profile.release]
  28. panic = "abort"