Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. [build-dependencies]
  11. cc = "1.0"
  12. [dependencies]
  13. compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins.git", default-features = false }
  14. ctype = { path = "src/ctype" }
  15. errno = { path = "src/errno" }
  16. fcntl = { path = "src/fcntl" }
  17. fenv = { path = "src/fenv" }
  18. float = { path = "src/float" }
  19. grp = { path = "src/grp" }
  20. netinet = { path = "src/netinet" }
  21. platform = { path = "src/platform" }
  22. semaphore = { path = "src/semaphore" }
  23. signal = { path = "src/signal" }
  24. stdio = { path = "src/stdio" }
  25. stdlib = { path = "src/stdlib" }
  26. string = { path = "src/string" }
  27. sys_mman = { path = "src/sys_mman" }
  28. sys_resource = { path = "src/sys_resource" }
  29. sys_socket = { path = "src/sys_socket" }
  30. sys_stat = { path = "src/sys_stat" }
  31. sys_time = { path = "src/sys_time" }
  32. sys_wait = { path = "src/sys_wait" }
  33. time = { path = "src/time" }
  34. unistd = { path = "src/unistd" }
  35. wctype = { path = "src/wctype" }
  36. [profile.dev]
  37. panic = "abort"
  38. [profile.release]
  39. panic = "abort"