[package]
edition = "2024"
rust-version = "1.98"
name = "act-store"
version = "0.13.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local OCI-layout component store for ACT (act-cli, act-toolserver)"
homepage = "https://actcore.dev"
readme = "README.md"
keywords = [
"act",
"wasm",
"oci",
"component",
"store",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/actcore/act-cli"
[lib]
name = "act_store"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4.44"
features = ["clock"]
default-features = false
[dependencies.dirs]
version = "6"
[dependencies.fs4]
version = "1"
features = ["sync"]
[dependencies.futures]
version = "0.3"
[dependencies.hclient]
version = "0.1.0-alpha.12"
features = [
"json",
"gzip",
"brotli",
"zstd",
"http2",
]
default-features = false
[dependencies.hclient-dns-system]
version = "0.1.0-alpha.12"
[dependencies.hclient-native]
version = "0.1.0-alpha.12"
features = ["http2"]
[dependencies.hclient-rt-tokio]
version = "0.1.0-alpha.11"
[dependencies.hclient-tls-rustls]
version = "0.1.0-alpha.12"
features = ["webpki-roots"]
[dependencies.oci-client]
version = "0.17"
[dependencies.oci-spec]
version = "0.9.0"
[dependencies.regex]
version = "1"
[dependencies.rustls]
version = "0.23"
features = ["ring"]
default-features = false
[dependencies.serde_json]
version = "1.0.150"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.52"
features = [
"rt",
"macros",
"fs",
"io-util",
]
[dependencies.tracing]
version = "0.1.44"
[dependencies.url]
version = "2"
[dev-dependencies.flate2]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.52"
features = [
"rt",
"macros",
"rt-multi-thread",
]
[dev-dependencies.wiremock]
version = "0.6"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
similar_names = "allow"
too_many_lines = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1