Cargo.toml 1.2 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", "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.compiler_builtins]
  21. git = "https://github.com/rust-lang-nursery/compiler-builtins.git"
  22. rev = "fe74674f6e4be76d47b66f67d529ebf4186f4eb1"
  23. default-features = false
  24. features = ["no-lang-items", "mangled-names"]
  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"
  33. spin = "0.4.10"
  34. [features]
  35. #default = ["trace"]
  36. trace = []
  37. [profile.dev]
  38. panic = "abort"
  39. [profile.release]
  40. panic = "abort"