Cargo.toml 959 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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", "cbindgen"]
  10. exclude = ["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. posix-regex = { path = "posix-regex", features = ["no_std"] }
  18. rand = { version = "0.5.5", default-features = false }
  19. va_list = { path = "va_list", features = ["no_std"] }
  20. [dependencies.ralloc]
  21. path = "ralloc"
  22. default-features = false
  23. optional = true
  24. [target.'cfg(target_os = "linux")'.dependencies]
  25. sc = "0.2.2"
  26. [target.'cfg(target_os = "redox")'.dependencies]
  27. redox_syscall = "0.1.52"
  28. spin = "0.4.10"
  29. [features]
  30. default = []
  31. trace = []
  32. [profile.dev]
  33. panic = "abort"
  34. [profile.release]
  35. panic = "abort"