Cargo.toml 972 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. [dependencies]
  11. compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins.git", default-features = false, features = ["mem"] }
  12. ctype = { path = "src/ctype" }
  13. errno = { path = "src/errno" }
  14. fcntl = { path = "src/fcntl" }
  15. fenv = { path = "src/fenv" }
  16. grp = { path = "src/grp" }
  17. semaphore = { path = "src/semaphore" }
  18. mman = { path = "src/mman" }
  19. platform = { path = "src/platform" }
  20. resource = { path = "src/resource" }
  21. stat = { path = "src/stat" }
  22. stdio = { path = "src/stdio" }
  23. stdlib = { path = "src/stdlib" }
  24. string = { path = "src/string" }
  25. sys_time = { path = "src/sys_time" }
  26. time = { path = "src/time" }
  27. unistd = { path = "src/unistd" }
  28. wait = { path = "src/wait" }
  29. wctype = { path = "src/wctype" }
  30. [profile.dev]
  31. panic = "abort"
  32. [profile.release]
  33. panic = "abort"