From 69211a87a3aaba2c8e4037d5f1a8adbca185f13d Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sun, 14 Jul 2024 20:47:19 +0100 Subject: [PATCH] build: add more metadata for crates.io --- Cargo.toml | 7 +++++++ crates/cli/Cargo.toml | 5 +++++ 2 files changed, 12 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 820f984..7dbaa27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,13 @@ version = "0.9.4" edition = "2021" license = "MIT" repository = "https://git.kemitix.net/kemitix/git-next" +authors = ["Paul Campbell "] +rust-version = "1.76" +description = "trunk-based development manager" +documentation = "https://git.kemitix.net/kemitix/git-next/src/branch/main/README.md" +keywords = ["git", "cli", "server", "tool"] +categories = ["development-tools"] + [workspace.lints.clippy] nursery = { level = "warn", priority = -1 } diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 66b64d3..8bbf0f3 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -5,6 +5,11 @@ edition = { workspace = true } license = { workspace = true } repository = { workspace = true } description = "CLI support for git-next, the trunk-based development manager" +authors = { workspace = true } +rust-version = { workspace = true } +documentation = { workspace = true } +keywords = { workspace = true } +categories = { workspace = true } [dependencies] git-next-server = { workspace = true }