29 lines
672 B
TOML
29 lines
672 B
TOML
[package]
|
|
name = "vm-plugin"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Plugin System for Virtual Machine"
|
|
authors = ["VM Team <team@vm-project.org>"]
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
vm-core = { path = "../vm-core" }
|
|
vm-interface = { path = "../vm-interface" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.48", features = ["full"] }
|
|
async-trait = "0.1"
|
|
libloading = "0.9"
|
|
parking_lot = "0.12"
|
|
thiserror = "2.0"
|
|
tracing = "0.1"
|
|
reqwest = { version = "0.12", features = ["json"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
tempfile = "3.23"
|
|
|
|
[features]
|
|
default = []
|
|
repository = ["reqwest"]
|