23 lines
521 B
TOML
23 lines
521 B
TOML
[package]
|
|
name = "example_plugin"
|
|
version = "0.1.0"
|
|
authors = ["michael-bailey <mickyb18a@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
crate-type = ["dylib"]
|
|
name = "ExamplePlugin"
|
|
path = "src/lib.rs"
|
|
|
|
|
|
[dependencies]
|
|
uuid = {version = "0.8", features = ["serde", "v4"]}
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
zeroize = "1.1.0"
|
|
futures = "0.3.16"
|
|
async-trait = "0.1.52"
|
|
|
|
server = {path = "../server"} |