[package]
edition = "2021"
name = "mockforge-plugin-loader"
version = "0.3.73"
authors = ["SaaSy Solutions LLC <ray.clanan@saasysolutionsllc.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Plugin loader with security sandboxing and validation for MockForge"
homepage = "https://mockforge.dev"
documentation = "https://docs.rs/mockforge"
readme = "README.md"
keywords = [
"plugin",
"loader",
"wasm",
"security",
"sandbox",
]
categories = [
"development-tools",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/SaaSy-Solutions/mockforge"
[features]
default = ["git"]
git = ["git2"]
[lib]
name = "mockforge_plugin_loader"
path = "src/lib.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "loader_tests"
path = "tests/loader_tests.rs"
[[test]]
name = "security_tests"
path = "tests/security_tests.rs"
[[test]]
name = "security_validation_tests_simple"
path = "tests/security_validation_tests_simple.rs"
[[test]]
name = "signature_tests"
path = "tests/signature_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dirs]
version = "5.0"
[dependencies.flate2]
version = "1.0"
[dependencies.git2]
version = "0.19"
optional = true
[dependencies.hex]
version = "0.4"
[dependencies.indicatif]
version = "0.17"
[dependencies.mockforge-plugin-core]
version = "0.3.70"
[dependencies.rand]
version = "0.9"
[dependencies.regex]
version = "1.10"
[dependencies.reqwest]
version = "0.12"
features = [
"stream",
"rustls-tls",
"json",
]
default-features = false
[dependencies.ring]
version = "0.17"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.shellexpand]
version = "2.1"
[dependencies.tar]
version = "0.4"
[dependencies.tempfile]
version = "3.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.0"
features = [
"rt-multi-thread",
"macros",
"net",
"time",
"sync",
"fs",
"fs",
]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"
[dependencies.urlencoding]
version = "2.1"
[dependencies.uuid]
version = "1.0"
features = ["v4"]
[dependencies.wasmparser]
version = "0.239"
[dependencies.wasmtime]
version = "36.0.3"
[dependencies.wasmtime-wasi]
version = "36.0.3"
[dependencies.wit-bindgen]
version = "0.46"
[dependencies.zip]
version = "2.2"
[dev-dependencies.tempfile]
version = "3.0"
[dev-dependencies.tokio]
version = "1.0"
features = [
"rt-multi-thread",
"macros",
"net",
"time",
"sync",
"fs",
"test-util",
]
[dev-dependencies.wiremock]
version = "0.6"
[lints.rust]
missing_docs = "deny"