Cargo.toml 381 B

123456789101112131415161718192021
  1. [package]
  2. edition = "2021"
  3. license = "MIT OR Apache-2.0"
  4. name = "xtask"
  5. version = "0.1.0"
  6. [[bin]]
  7. name = "xtask"
  8. path = "src/main.rs"
  9. [dependencies]
  10. # Local crates
  11. bootfs = {path = "../src/lib/bootfs", features = ["gen"]}
  12. # External crates
  13. anyhow = "1.0"
  14. cc = "1.0"
  15. quote = "1.0"
  16. rand = "0.8"
  17. serde = {version = "1.0", features = ["derive"]}
  18. serde_json = "1.0"
  19. structopt = "0.3"