19 lines
369 B
TOML
19 lines
369 B
TOML
[package]
|
|
name = "nac-cee-plugin-loader"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
description = "NAC CEE 辖区插件动态加载机制 - 运行时热加载,无需重启节点"
|
|
|
|
[lib]
|
|
name = "nac_cee_plugin_loader"
|
|
path = "src/lib.rs"
|
|
|
|
[lints.rust]
|
|
warnings = "allow"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
|
|
[dev-dependencies]
|