Created example plugin crate
This commit is contained in:
parent
e833fa347c
commit
5746163123
|
|
@ -3,5 +3,6 @@ members = [
|
|||
'foundation',
|
||||
'server',
|
||||
'client',
|
||||
'serverctl'
|
||||
'serverctl',
|
||||
'example_plugin'
|
||||
]
|
||||
|
|
|
|||
|
|
@ -0,0 +1,23 @@
|
|||
[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]
|
||||
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"
|
||||
tokio = { version = "1.9.0", features = ["full"] }
|
||||
futures = "0.3.16"
|
||||
async-trait = "0.1.52"
|
||||
|
||||
server = {path = "../server"}
|
||||
Loading…
Reference in New Issue