From 8d4aa5e599e366550756c4c6cb641c94999e2eaf Mon Sep 17 00:00:00 2001 From: Nilirad Date: Mon, 29 Jun 2026 12:59:47 +0200 Subject: [PATCH 1/2] Update Cargo manifest to include release details --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 433b1e9..af2beb7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,9 @@ name = "commit-bridge" version = "0.1.0" edition = "2024" license = "MIT OR Apache-2.0" +description = "Seamless workflow dispatch for remote git dependencies." +documentation = "https://docs.rs/commit-bridge" +repository = "https://github.com/Nilirad/commit-bridge" [dependencies] async-trait = "0.1" From 401fcff970670bb91ff46fa1f013525658b63045 Mon Sep 17 00:00:00 2001 From: Nilirad Date: Mon, 29 Jun 2026 13:07:28 +0200 Subject: [PATCH 2/2] Include folders in manifest --- Cargo.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index af2beb7..5f98e27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,6 +6,14 @@ license = "MIT OR Apache-2.0" description = "Seamless workflow dispatch for remote git dependencies." documentation = "https://docs.rs/commit-bridge" repository = "https://github.com/Nilirad/commit-bridge" +include = [ + "src/**/*", + "Cargo.lock", + "Cargo.toml", + "README.md", + ".sqlx/**/*", + "migrations/**/*", +] [dependencies] async-trait = "0.1"