From a30559c72296680dc3b6de5c878e74e4a7f3712e Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 29 Jun 2026 04:08:35 +0800 Subject: chore: add package metadata and symlinks for publishing Centralize package metadata in the workspace `Cargo.toml` and inherit it in sub-crates. Add license symlinks and README symlinks to the workspace root. Set `documentation` URLs for library crates. --- just_template/Cargo.toml | 8 ++++++-- just_template/LICENSE-APACHE | 1 + just_template/LICENSE-MIT | 1 + just_template/README.md | 1 + 4 files changed, 9 insertions(+), 2 deletions(-) create mode 120000 just_template/LICENSE-APACHE create mode 120000 just_template/LICENSE-MIT create mode 120000 just_template/README.md (limited to 'just_template') diff --git a/just_template/Cargo.toml b/just_template/Cargo.toml index 1536e0b..c791b43 100644 --- a/just_template/Cargo.toml +++ b/just_template/Cargo.toml @@ -4,10 +4,14 @@ version.workspace = true description.workspace = true authors.workspace = true edition.workspace = true +homepage.workspace = true +repository.workspace = true +license.workspace = true +keywords.workspace = true +categories.workspace = true readme = "README.md" -license = "MIT OR Apache-2.0" -repository = "https://github.com/catilgrass/just_template" +documentation = "https://docs.rs/just_template" [dependencies] just_template_macros.workspace = true diff --git a/just_template/LICENSE-APACHE b/just_template/LICENSE-APACHE new file mode 120000 index 0000000..e2a4dc6 --- /dev/null +++ b/just_template/LICENSE-APACHE @@ -0,0 +1 @@ +D:/just_template/LICENSE-APACHE \ No newline at end of file diff --git a/just_template/LICENSE-MIT b/just_template/LICENSE-MIT new file mode 120000 index 0000000..fa1766a --- /dev/null +++ b/just_template/LICENSE-MIT @@ -0,0 +1 @@ +D:/just_template/LICENSE-MIT \ No newline at end of file diff --git a/just_template/README.md b/just_template/README.md new file mode 120000 index 0000000..7f83ffb --- /dev/null +++ b/just_template/README.md @@ -0,0 +1 @@ +D:/just_template/README.md \ No newline at end of file -- cgit