crosvm/ext2/Cargo.toml
Keiichi Watanabe 0eccc54c50 ext2: Allow constructing a file system from a directory
BUG=b:329359333
TEST=cargo test

Change-Id: I3279426ee3ad5fa593075705acc4a5b1e8572d64
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/5439156
Reviewed-by: Junichi Uekawa <uekawa@chromium.org>
Reviewed-by: Takaya Saeki <takayas@chromium.org>
Commit-Queue: Keiichi Watanabe <keiichiw@chromium.org>
2024-06-17 11:57:48 +00:00

22 lines
401 B
TOML

[package]
name = "ext2"
version = "0.1.0"
authors = ["The ChromiumOS Authors"]
edition = "2021"
[dependencies]
anyhow = "1"
base = { path = "../base/" }
enumn = "0.1"
libc = "0.2"
uuid = { version = "1", features = ["v4"] }
zerocopy = "0.7.29" # >=0.7.29 is required for our 'AsBytes'
zerocopy-derive = "0.7"
[[example]]
name = "mkfs"
[dev-dependencies]
argh = "0.1"
tempfile = "3"
walkdir = "2.3"