[package]
name = "mockforge-plugin-loader"
version = "0.3.16"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
readme.workspace = true
keywords = ["plugin", "loader", "wasm", "security", "sandbox"]
categories = ["development-tools", "api-bindings"]
description = "Plugin loader with security sandboxing and validation for MockForge"
[lints.rust]
missing_docs = "deny"
[dependencies]
mockforge-plugin-core = "0.3.16"
serde.workspace = true
serde_json.workspace = true
tokio = { workspace = true, features = ["fs"] }
anyhow.workspace = true
thiserror.workspace = true
tracing.workspace = true
uuid.workspace = true
regex.workspace = true
wasmtime = "36.0.3"
wasmtime-wasi = "36.0.3"
wasmparser = "0.239"
wit-bindgen = "0.46"
async-trait = "0.1"
rand.workspace = true
url.workspace = true
serde_yaml.workspace = true
urlencoding.workspace = true
base64.workspace = true
shellexpand = "2.1"
chrono.workspace = true
ring = "0.17"
hex.workspace = true
reqwest = { version = "0.12", features = ["stream", "rustls-tls", "json"], default-features = false }
zip = "2.2"
flate2 = "1.0"
tar = "0.4"
git2 = { version = "0.19", optional = true }
indicatif = "0.17"
dirs = "5.0"
tempfile = "3.0"
[features]
default = ["git-support"]
git-support = ["git2"]
[dev-dependencies]
tokio = { workspace = true, features = ["test-util"] }
tempfile = "3.0"
wiremock = "0.6"