chore: add Cargo.toml metadata (description, license, rust-version)
- 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
This commit is contained in:
@@ -6,6 +6,10 @@ name = "showen_v2"
|
|||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
authors = ["showen"]
|
authors = ["showen"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
rust-version = "1.70"
|
||||||
|
description = "ShowenV2 digital life window platform - plugin microkernel architecture"
|
||||||
|
license = "MIT"
|
||||||
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
|
|||||||
@@ -3,7 +3,9 @@ name = "showen-plugin-sdk"
|
|||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
authors = ["showen"]
|
authors = ["showen"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
rust-version = "1.70"
|
||||||
description = "SDK for building ShowenV2 dynamic plugins"
|
description = "SDK for building ShowenV2 dynamic plugins"
|
||||||
|
license = "MIT"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
|
|||||||
@@ -3,6 +3,10 @@ name = "showen-example-plugin"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["showen"]
|
authors = ["showen"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
rust-version = "1.70"
|
||||||
|
description = "Example dynamic plugin for ShowenV2"
|
||||||
|
license = "MIT"
|
||||||
|
publish = false
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
crate-type = ["cdylib"]
|
crate-type = ["cdylib"]
|
||||||
|
|||||||
Reference in New Issue
Block a user