From e112b2e8b77e8781f1473d50424919ee74ef1b20 Mon Sep 17 00:00:00 2001 From: XiuChengWu <732857315@qq.com> Date: Tue, 31 Mar 2026 23:26:17 +0800 Subject: [PATCH] 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 --- Cargo.toml | 4 ++++ plugin-sdk/Cargo.toml | 2 ++ plugins/example-plugin/Cargo.toml | 4 ++++ 3 files changed, 10 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 3432876..a4ff120 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,6 +6,10 @@ name = "showen_v2" version = "0.2.0" authors = ["showen"] edition = "2021" +rust-version = "1.70" +description = "ShowenV2 digital life window platform - plugin microkernel architecture" +license = "MIT" +publish = false [dependencies] anyhow = "1" diff --git a/plugin-sdk/Cargo.toml b/plugin-sdk/Cargo.toml index 57bd12f..9a97274 100644 --- a/plugin-sdk/Cargo.toml +++ b/plugin-sdk/Cargo.toml @@ -3,7 +3,9 @@ name = "showen-plugin-sdk" version = "0.2.0" authors = ["showen"] edition = "2021" +rust-version = "1.70" description = "SDK for building ShowenV2 dynamic plugins" +license = "MIT" [dependencies] serde = { version = "1", features = ["derive"] } diff --git a/plugins/example-plugin/Cargo.toml b/plugins/example-plugin/Cargo.toml index 7ffb5e7..22ed821 100644 --- a/plugins/example-plugin/Cargo.toml +++ b/plugins/example-plugin/Cargo.toml @@ -3,6 +3,10 @@ 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"]