Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. 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. netinet = { path = "src/netinet" }
  20. platform = { path = "src/platform" }
  21. resource = { path = "src/resource" }
  22. semaphore = { path = "src/semaphore" }
  23. signal = { path = "src/signal" }
  24. socket = { path = "src/socket" }
  25. stat = { path = "src/stat" }
  26. stdio = { path = "src/stdio" }
  27. stdlib = { path = "src/stdlib" }
  28. string = { path = "src/string" }
  29. sys_time = { path = "src/sys_time" }
  30. time = { path = "src/time" }
  31. unistd = { path = "src/unistd" }
  32. wait = { path = "src/wait" }
  33. wctype = { path = "src/wctype" }
  34. [profile.dev]
  35. panic = "abort"
  36. [profile.release]
  37. panic = "abort"