1
1

Cargo.toml 366 B

1234567891011121314151617181920
  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. cc = "1.0"
  14. quote = "1.0"
  15. rand = "0.8"
  16. serde = {version = "1.0", features = ["derive"]}
  17. serde_json = "1.0"
  18. structopt = "0.3"