pluggable 0.1.0

A comprehensive, async plugin system for Rust applications with dependency management and security
Documentation
[[bin]]
name = "pluggable"
path = "src/main.rs"

[dependencies.async-trait]
version = "0.1"

[dependencies.env_logger]
version = "0.11"

[dependencies.inventory]
version = "0.3"

[dependencies.log]
version = "0.4"

[dependencies.petgraph]
version = "0.6"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.shellexpand]
version = "3.1"

[dependencies.tempfile]
version = "3.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
features = ["rt", "rt-multi-thread", "macros", "fs", "sync", "time"]
version = "1.0"

[dependencies.toml]
version = "0.8"

[dev-dependencies.chrono]
features = ["serde"]
version = "0.4"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.env_logger]
version = "0.11"

[dev-dependencies.log]
version = "0.4"

[dev-dependencies.mockall]
version = "0.13"

[dev-dependencies.tokio-test]
version = "0.4"

[lib]
name = "pluggable"
path = "src/lib.rs"

[lints.clippy]
cognitive_complexity = "warn"
match_single_binding = "allow"
too_many_arguments = "warn"
type_complexity = "warn"
uninlined_format_args = "allow"

[package]
authors = ["Tomer Lichtash <tomerlichtash@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools", "asynchronous", "web-programming"]
description = "A comprehensive, async plugin system for Rust applications with dependency management and security"
documentation = "https://docs.rs/pluggable"
edition = "2021"
exclude = ["examples/*", "benches/*", ".github/*", "*.md", "coverage/*"]
homepage = "https://github.com/tomerlichtash/pluggable"
keywords = ["plugin", "async", "security", "extensible", "dependency"]
license = "MIT OR Apache-2.0"
name = "pluggable"
readme = "README.md"
repository = "https://github.com/tomerlichtash/pluggable"
version = "0.1.0"