1[package] 2name = "vm_memory" 3version = "0.1.0" 4authors = ["The ChromiumOS Authors"] 5edition = "2021" 6include = ["src/**/*", "Cargo.toml"] 7 8[dependencies] 9anyhow = "1.0.32" 10cfg-if = "1.0.0" 11cros_async = { path = "../cros_async" } 12data_model = { path = "../common/data_model" } 13libc = "0.2" 14lz4_flex = "0.11" 15base = { path = "../base" } 16bitflags = "2.2.1" 17remain = "0.2" 18serde = { version = "1", features = [ "derive" ] } 19serde_json = "1" 20thiserror = "1" 21zerocopy = { version = "0.7", features = ["derive"] } 22 23[dev-dependencies] 24tempfile = "3" 25