vhdx: Fixed and dynamic VHDx block device implementation
Microsoft’s VHDx block device format specification is implemented
here as a crate. This commit includes the implementation for the
fixed and dynamic formats, where the other format is known as
differencing. The vhdx_header.rs, vhdx_bat.rs, vhdx_metadata.rs
implements parser and manipulators for the VHDx header, Block
Allocation Table, and metadata, respectively, for the VHDx file.
The vhdx_io.rs implements read and write routines for the VHDx file.
The vhdx.rs implements the Vhdx structure, which provides the wrapper
functions for standard I/O operations like read, write, and seek.
Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
Signed-off-by: Fazla Mehrab <akm.fazla.mehrab@intel.com>
2021-07-26 15:50:52 +00:00
|
|
|
[package]
|
|
|
|
name = "vhdx"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Cloud Hypervisor Authors"]
|
2022-04-08 15:11:04 +00:00
|
|
|
edition = "2021"
|
vhdx: Fixed and dynamic VHDx block device implementation
Microsoft’s VHDx block device format specification is implemented
here as a crate. This commit includes the implementation for the
fixed and dynamic formats, where the other format is known as
differencing. The vhdx_header.rs, vhdx_bat.rs, vhdx_metadata.rs
implements parser and manipulators for the VHDx header, Block
Allocation Table, and metadata, respectively, for the VHDx file.
The vhdx_io.rs implements read and write routines for the VHDx file.
The vhdx.rs implements the Vhdx structure, which provides the wrapper
functions for standard I/O operations like read, write, and seek.
Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
Signed-off-by: Fazla Mehrab <akm.fazla.mehrab@intel.com>
2021-07-26 15:50:52 +00:00
|
|
|
license = "Apache-2.0"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
byteorder = "1.4.3"
|
2022-04-13 10:05:46 +00:00
|
|
|
crc32c = "0.6.3"
|
2022-09-20 00:41:37 +00:00
|
|
|
libc = "0.2.133"
|
2022-05-02 23:56:28 +00:00
|
|
|
log = "0.4.17"
|
2022-08-04 00:57:42 +00:00
|
|
|
remain = "0.2.4"
|
2022-09-13 23:48:42 +00:00
|
|
|
thiserror = "1.0.35"
|
2022-06-10 23:41:35 +00:00
|
|
|
uuid = { version = "1.1.2", features = ["v4"] }
|