mockforge-plugin-core 0.3.13

Core plugin interfaces and types for MockForge extensible architecture
Documentation
[package]
name = "mockforge-plugin-core"
version = "0.3.13"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
readme.workspace = true
keywords = ["plugin", "wasm", "mock", "api", "extensible"]
categories = ["development-tools", "api-bindings"]
description = "Core plugin interfaces and types for MockForge extensible architecture"

# Enforce documentation for public library APIs
[lints.rust]
missing_docs = "deny"

[dependencies]
# Serialization
serde.workspace = true
serde_json.workspace = true

# Async runtime
tokio.workspace = true

# Logging
tracing.workspace = true

# Error handling
anyhow.workspace = true
thiserror.workspace = true

# HTTP types (for auth and response plugins)
axum.workspace = true
hyper.workspace = true

# Utility libraries
uuid.workspace = true
chrono.workspace = true

# WebAssembly runtime for plugin execution
wasmtime = "36.0.3"
wasmtime-wasi = "36.0.3"

# Plugin communication
wit-bindgen = "0.46"

# Async traits
async-trait = "0.1"

# Additional utilities
rand.workspace = true
url.workspace = true
regex.workspace = true
serde_yaml.workspace = true
urlencoding.workspace = true
base64.workspace = true
semver = "1.0"

# Template engine for client generation
handlebars = "4.5"

[dev-dependencies]
tokio = { workspace = true, features = ["test-util"] }
tempfile = "3.0"