[package] name = "oci-unpack" version = "0.1.0" edition = "2021" authors = ["ayosec@gmail.com"] license = "Apache-2.0" description = "Download and unpack OCI images." keywords = ["container-image", "oci"] readme = "README.md" documentation = "https://docs.rs/oci-unpack" repository = "https://github.com/lab-tool/oci-unpack" [dependencies] digest = { version = "0.10.7", default-features = false } flate2 = "1.0.34" landlock = { version = "0.4.1", optional = true } libc = "0" lru = { version = "0.12.5", default-features = false } rustix = { version = "0.38.37", features = ["fs", "process"] } serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.128" sha2 = "0.10.8" tar = "0.4.42" thiserror = "1.0.64" tiny_http = { version = "0.12.0", default-features = false } ureq = "2.10.1" [dev-dependencies] clap = { version = "4.5.19", features = ["derive"] } tempfile = "3.13.0" url = "2.5.2" [features] default = ["sandbox"] sandbox = ["dep:landlock"]