Cargo.toml 1.4 KB

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