[package]
edition = "2024"
rust-version = "1.85"
name = "cordis-loader"
version = "0.0.21"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Config-file driven plugin loader for the cordis-rs plugin framework"
readme = "README.md"
keywords = [
"cordis",
"plugin",
"loader",
"config",
"lifecycle",
]
categories = [
"config",
"rust-patterns",
]
license = "MIT"
repository = "https://github.com/dshbox/cordis-rs"
[features]
default = []
dynamic = ["dep:libloading"]
watch = ["cordis-include/watch"]
[lib]
name = "cordis_loader"
path = "src/lib.rs"
[[test]]
name = "audit_fixes"
path = "tests/audit_fixes.rs"
[[test]]
name = "document"
path = "tests/document.rs"
[[test]]
name = "dynamic"
path = "tests/dynamic.rs"
[[test]]
name = "events"
path = "tests/events.rs"
[[test]]
name = "import"
path = "tests/import.rs"
[[test]]
name = "loader"
path = "tests/loader.rs"
[[test]]
name = "review_fixes"
path = "tests/review_fixes.rs"
[dependencies.cordis-group]
version = "0.0.15"
[dependencies.cordis-include]
version = "0.0.21"
[dependencies.cordis-rs]
version = "0.6.0"
[dependencies.libloading]
version = "0.8"
optional = true