Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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"
  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. 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_wait = { path = "src/sys_wait" }
  35. time = { path = "src/time" }
  36. unistd = { path = "src/unistd" }
  37. wctype = { path = "src/wctype" }
  38. [profile.dev]
  39. panic = "abort"
  40. [profile.release]
  41. panic = "abort"