From 06c0de0315f6564b5a067ebbb4c1d6484d4099c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Ravier?= Date: Fri, 13 Mar 2026 12:45:47 +0100 Subject: [PATCH] Cargo.toml: Update include list for crate - Simplify code include rule - Only include Markdown files from the root - Include documentation and Makefile See: https://doc.rust-lang.org/cargo/reference/manifest.html#the-exclude-and-include-fields `cargo package --list` diff: ``` --- before 2026-03-13 12:48:07.142760381 +0100 +++ after 2026-03-13 12:48:14.142824323 +0100 @@ -2,7 +2,8 @@ Cargo.lock Cargo.toml Cargo.toml.orig -Documentation/README.md +Documentation/Makefile +Documentation/git-absorb.adoc LICENSE.md README.md src/commute.rs ``` --- Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 85360a6..943411b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,9 +11,11 @@ license = "BSD-3-Clause" edition = "2021" include = [ - "**/*.rs", + "*.rs", + "/*.md", "Cargo.*", - "*.md", + "Documentation/Makefile", + "Documentation/git-absorb.adoc" ] rust-version = "1.74.1"