[package]
edition = "2021"
name = "rustant-plugins"
version = "1.0.0"
authors = ["Dev Jadhav"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Plugin system for Rustant agent — native dynamic loading and WASM sandboxed plugins"
homepage = "https://github.com/DevJadhav/Rustant"
readme = false
keywords = [
"agent",
"llm",
"ai",
"plugins",
"wasm",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/DevJadhav/Rustant"
[lib]
name = "rustant_plugins"
path = "src/lib.rs"
[[test]]
name = "plugin_lifecycle"
path = "tests/plugin_lifecycle.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.libloading]
version = "0.8"
[dependencies.rustant-core]
version = "1.0.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.47"
features = [
"rt-multi-thread",
"sync",
"time",
"macros",
"net",
"fs",
"io-util",
"io-std",
"process",
"signal",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.0"
features = [
"v4",
"serde",
]
[dependencies.wasmi]
version = "1.0"
features = ["default"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.47"
features = [
"rt-multi-thread",
"sync",
"time",
"macros",
"net",
"fs",
"io-util",
"io-std",
"process",
"signal",
"test-util",
]