mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 12:50:54 +00:00
* feat: oci packer can now use mksquashfs if available * fix: use nproc in kernel build script for default jobs, and fix DEV.md guide * feat: working erofs backend
42 lines
1.0 KiB
TOML
42 lines
1.0 KiB
TOML
[package]
|
|
name = "krata-oci"
|
|
description = "OCI services for the krata hypervisor."
|
|
license.workspace = true
|
|
version.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
async-compression = { workspace = true, features = ["tokio", "gzip", "zstd"] }
|
|
async-trait = { workspace = true }
|
|
backhand = { workspace = true }
|
|
bytes = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
krata-tokio-tar = { workspace = true }
|
|
log = { workspace = true }
|
|
oci-spec = { workspace = true }
|
|
path-clean = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
scopeguard = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sha256 = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
url = { workspace = true }
|
|
uuid = { workspace = true }
|
|
walkdir = { workspace = true }
|
|
|
|
[lib]
|
|
name = "krataoci"
|
|
|
|
[dev-dependencies]
|
|
env_logger = { workspace = true }
|
|
|
|
[[example]]
|
|
name = "krataoci-squashify"
|
|
path = "examples/squashify.rs"
|