Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [package]
  2. name = "relibc"
  3. version = "0.1.0"
  4. authors = ["Jeremy Soller <[email protected]>"]
  5. [lib]
  6. name = "relibc"
  7. crate-type = ["staticlib"]
  8. [workspace]
  9. members = ["src/crt0", "src/crti", "src/crtn", "src/ld_so"]
  10. exclude = ["cbindgen", "core_io", "ralloc"]
  11. [build-dependencies]
  12. cc = "1.0.25"
  13. [dependencies]
  14. cbitset = "0.1.0"
  15. core_io = { path = "core_io", features = ["collections"] }
  16. lazy_static = { version = "1.2.0", features = ["nightly", "spin_no_std"] }
  17. memoffset = "0.3.0"
  18. posix-regex = { path = "posix-regex", features = ["no_std"] }
  19. rand = { version = "0.5.5", default-features = false }
  20. memchr = { version = "2.2.0", default-features = false }
  21. [dependencies.goblin]
  22. version = "0.0.21"
  23. default-features = false
  24. features = ["elf32", "elf64", "endian_fd"]
  25. [dependencies.ralloc]
  26. path = "ralloc"
  27. default-features = false
  28. optional = true
  29. [target.'cfg(target_os = "linux")'.dependencies]
  30. sc = "0.2.2"
  31. [target.'cfg(target_os = "redox")'.dependencies]
  32. redox_syscall = "0.1.52"
  33. spin = "0.4.10"
  34. [features]
  35. default = []
  36. trace = []
  37. [profile.dev]
  38. panic = "abort"
  39. [profile.release]
  40. panic = "abort"