Cargo.toml 1.1 KB

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