mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 21:00:55 +00:00
36 lines
865 B
TOML
36 lines
865 B
TOML
[package]
|
|
name = "krata-oci"
|
|
version.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 }
|
|
krata-tokio-tar = { workspace = true }
|
|
log = { workspace = true }
|
|
oci-spec = { workspace = true }
|
|
path-clean = { workspace = true }
|
|
reqwest = { 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"
|