Cargo.toml 401 B

12345678910111213141516171819202122
  1. [package]
  2. name = "ext2"
  3. version = "0.1.0"
  4. authors = ["The ChromiumOS Authors"]
  5. edition = "2021"
  6. [dependencies]
  7. anyhow = "1"
  8. base = { path = "../base/" }
  9. enumn = "0.1"
  10. libc = "0.2"
  11. uuid = { version = "1", features = ["v4"] }
  12. zerocopy = "0.7.29" # >=0.7.29 is required for our 'AsBytes'
  13. zerocopy-derive = "0.7"
  14. [[example]]
  15. name = "mkfs"
  16. [dev-dependencies]
  17. argh = "0.1"
  18. tempfile = "3"
  19. walkdir = "2.3"