mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 13:23:08 +00:00
bae88f4f65
The current crate still require some work to be really reusable as a regular FUSE, i.e. with a new reader/writer against /dev/fuse. This change intends to focus on creating the crate, without trying to find the optimal interface, and still keep virtio/fs working. BUG=b:168305155 TEST=./build_test TEST=USE='asan fuzzer' emerge-hatch crosvm Change-Id: I8b623c9262221113b720c10125a6770763f14dc8 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2466484 Tested-by: Victor Hsieh <victorhsieh@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Chirantan Ekbote <chirantan@chromium.org> Commit-Queue: Victor Hsieh <victorhsieh@chromium.org>
16 lines
No EOL
244 B
TOML
16 lines
No EOL
244 B
TOML
[package]
|
|
name = "fuse"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
base = "*"
|
|
bitflags = "1"
|
|
data_model = "*"
|
|
enumn = { path = "../enumn" }
|
|
libc = "*"
|
|
thiserror = "1.0.20" |