From 39904c22c13dbdd4e351e48bc48a7eeed5a290e9 Mon Sep 17 00:00:00 2001 From: Noah Knegt Date: Wed, 7 May 2025 20:03:31 +0200 Subject: [PATCH] Update cargo configurations --- Cargo.toml | 7 +++++++ create-worktree/Cargo.toml | 7 +++++-- setup-repo/Cargo.toml | 7 +++++-- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 32699d2..e950ec3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,3 +4,10 @@ members = [ "create-worktree", "setup-repo", ] + +package.edition = "2024" +package.authors = [ + "Noah Knegt " +] +package.license-file = "LICENSE" +package.repository = "https://git.noahknegt.com/noah.knegt/repo-utils" diff --git a/create-worktree/Cargo.toml b/create-worktree/Cargo.toml index f485f19..11b51fb 100644 --- a/create-worktree/Cargo.toml +++ b/create-worktree/Cargo.toml @@ -1,10 +1,13 @@ [package] name = "create-worktree" version = "0.1.0" -edition = "2024" -authors = ["Noah Knegt "] description = "A tool to create git worktrees with convenient branch management" +edition.workspace = true +authors.workspace = true +license-file.workspace = true +repository.workspace = true + [dependencies] clap = { version = "4.5", features = ["derive"] } anyhow = "1.0" diff --git a/setup-repo/Cargo.toml b/setup-repo/Cargo.toml index efeb33b..6b41a30 100644 --- a/setup-repo/Cargo.toml +++ b/setup-repo/Cargo.toml @@ -1,9 +1,12 @@ [package] name = "setup-repo" version = "0.1.0" -edition = "2024" description = "Tool to set up Git repositories for worktree development" -authors = ["Noah Knegt "] + +edition.workspace = true +authors.workspace = true +license-file.workspace = true +repository.workspace = true [dependencies] anyhow = "1.0"