- All crates: rust-version = 1.70, license = MIT - Root + example-plugin: publish = false (not intended for crates.io) - plugin-sdk: proper description for potential future publication
18 lines
366 B
TOML
18 lines
366 B
TOML
[package]
|
|
name = "showen-example-plugin"
|
|
version = "0.1.0"
|
|
authors = ["showen"]
|
|
edition = "2021"
|
|
rust-version = "1.70"
|
|
description = "Example dynamic plugin for ShowenV2"
|
|
license = "MIT"
|
|
publish = false
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
showen-plugin-sdk = { path = "../../plugin-sdk" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|