Cargo.toml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. [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. fnmatch = { path = "src/fnmatch" }
  21. grp = { path = "src/grp" }
  22. inttypes = { path = "src/inttypes" }
  23. locale = { path = "src/locale" }
  24. netinet = { path = "src/netinet" }
  25. platform = { path = "src/platform" }
  26. pwd = { path = "src/pwd" }
  27. semaphore = { path = "src/semaphore" }
  28. setjmp = { path = "src/setjmp" }
  29. signal = { path = "src/signal" }
  30. stdio = { path = "src/stdio" }
  31. stdlib = { path = "src/stdlib" }
  32. string = { path = "src/string" }
  33. strings = { path = "src/strings" }
  34. sys_ioctl = { path = "src/sys_ioctl" }
  35. sys_mman = { path = "src/sys_mman" }
  36. sys_resource = { path = "src/sys_resource" }
  37. sys_select = { path = "src/sys_select" }
  38. sys_socket = { path = "src/sys_socket" }
  39. sys_stat = { path = "src/sys_stat" }
  40. sys_time = { path = "src/sys_time" }
  41. sys_times = { path = "src/sys_times" }
  42. sys_un = { path = "src/sys_un" }
  43. sys_utsname = { path = "src/sys_utsname" }
  44. sys_wait = { path = "src/sys_wait" }
  45. termios = { path = "src/termios" }
  46. time = { path = "src/time" }
  47. unistd = { path = "src/unistd" }
  48. utime = { path = "src/utime" }
  49. wchar = { path = "src/wchar" }
  50. wctype = { path = "src/wctype" }
  51. [dependencies.compiler_builtins]
  52. git = "https://github.com/rust-lang-nursery/compiler-builtins.git"
  53. default-features = false
  54. features = ["no-lang-items", "mangled-names"]
  55. [profile.dev]
  56. panic = "abort"
  57. [profile.release]
  58. panic = "abort"