- Cargo.toml: edition 2021 - plugin-sdk/Cargo.toml: edition 2021 - plugins/example-plugin/Cargo.toml: edition 2021 Rust 2021 edition 带来更好的闭包捕获规则、IntoIterator for arrays 等改进。
11 lines
233 B
TOML
11 lines
233 B
TOML
[package]
|
|
name = "showen-plugin-sdk"
|
|
version = "0.2.0"
|
|
authors = ["showen"]
|
|
edition = "2021"
|
|
description = "SDK for building ShowenV2 dynamic plugins"
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|