Cargo.toml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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.17"
  12. [dependencies]
  13. arpainet = { path = "src/arpainet" }
  14. ctype = { path = "src/ctype" }
  15. dirent = { path = "src/dirent" }
  16. errno = { path = "src/errno" }
  17. fcntl = { path = "src/fcntl" }
  18. fenv = { path = "src/fenv" }
  19. float = { path = "src/float" }
  20. grp = { path = "src/grp" }
  21. inttypes = { path = "src/inttypes" }
  22. locale = { path = "src/locale" }
  23. netinet = { path = "src/netinet" }
  24. platform = { path = "src/platform" }
  25. pwd = { path = "src/pwd" }
  26. semaphore = { path = "src/semaphore" }
  27. setjmp = { path = "src/setjmp" }
  28. signal = { path = "src/signal" }
  29. stdio = { path = "src/stdio" }
  30. stdlib = { path = "src/stdlib" }
  31. string = { path = "src/string" }
  32. strings = { path = "src/strings" }
  33. sys_ioctl = { path = "src/sys_ioctl" }
  34. sys_mman = { path = "src/sys_mman" }
  35. sys_resource = { path = "src/sys_resource" }
  36. sys_socket = { path = "src/sys_socket" }
  37. sys_stat = { path = "src/sys_stat" }
  38. sys_time = { path = "src/sys_time" }
  39. sys_un = { path = "src/sys_un" }
  40. sys_utsname = { path = "src/sys_utsname" }
  41. sys_wait = { path = "src/sys_wait" }
  42. time = { path = "src/time" }
  43. unistd = { path = "src/unistd" }
  44. wchar = { path = "src/wchar" }
  45. wctype = { path = "src/wctype" }
  46. [dependencies.compiler_builtins]
  47. git = "https://github.com/rust-lang-nursery/compiler-builtins.git"
  48. default-features = false
  49. features = ["no-lang-items", "mangled-names"]
  50. [profile.dev]
  51. panic = "abort"
  52. [profile.release]
  53. panic = "abort"