diff --git a/Cargo.toml b/Cargo.toml index f4bf4e59b96..0234c89edcb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" license = "MIT OR Apache-2.0" version = "0.31.1" default-run = "gix" -include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*", "README.md"] resolver = "2" [[bin]] diff --git a/etc/check-package-size.sh b/etc/check-package-size.sh index 425e03d623a..f4b5940cc2a 100755 --- a/etc/check-package-size.sh +++ b/etc/check-package-size.sh @@ -15,11 +15,11 @@ function indent () { } echo "in root: gitoxide CLI" -(enter gix-actor && indent cargo diet -n --package-size-limit 5KB) +(enter gix-actor && indent cargo diet -n --package-size-limit 10KB) (enter gix-archive && indent cargo diet -n --package-size-limit 10KB) (enter gix-worktree-stream && indent cargo diet -n --package-size-limit 40KB) (enter gix-utils && indent cargo diet -n --package-size-limit 10KB) -(enter gix-fs && indent cargo diet -n --package-size-limit 10KB) +(enter gix-fs && indent cargo diet -n --package-size-limit 15KB) (enter gix-pathspec && indent cargo diet -n --package-size-limit 30KB) (enter gix-refspec && indent cargo diet -n --package-size-limit 30KB) (enter gix-path && indent cargo diet -n --package-size-limit 25KB) @@ -37,25 +37,20 @@ echo "in root: gitoxide CLI" (enter gix-command && indent cargo diet -n --package-size-limit 10KB) (enter gix-hash && indent cargo diet -n --package-size-limit 30KB) (enter gix-chunk && indent cargo diet -n --package-size-limit 15KB) -(enter gix-rebase && indent cargo diet -n --package-size-limit 5KB) -(enter gix-sequencer && indent cargo diet -n --package-size-limit 5KB) (enter gix-features && indent cargo diet -n --package-size-limit 65KB) (enter gix-ref && indent cargo diet -n --package-size-limit 55KB) -(enter gix-diff && indent cargo diet -n --package-size-limit 10KB) -(enter gix-traverse && indent cargo diet -n --package-size-limit 10KB) +(enter gix-diff && indent cargo diet -n --package-size-limit 15KB) +(enter gix-traverse && indent cargo diet -n --package-size-limit 15KB) (enter gix-url && indent cargo diet -n --package-size-limit 35KB) -(enter gix-validate && indent cargo diet -n --package-size-limit 5KB) +(enter gix-validate && indent cargo diet -n --package-size-limit 10KB) (enter gix-date && indent cargo diet -n --package-size-limit 25KB) -(enter gix-hashtable && indent cargo diet -n --package-size-limit 5KB) -(enter gix-filter && indent cargo diet -n --package-size-limit 5KB) -(enter gix-lfs && indent cargo diet -n --package-size-limit 5KB) -(enter gix-note && indent cargo diet -n --package-size-limit 5KB) -(enter gix-fetchhead && indent cargo diet -n --package-size-limit 5KB) +(enter gix-hashtable && indent cargo diet -n --package-size-limit 10KB) +(enter gix-filter && indent cargo diet -n --package-size-limit 35KB) +(enter gix-status && indent cargo diet -n --package-size-limit 30KB) (enter gix-sec && indent cargo diet -n --package-size-limit 25KB) -(enter gix-tix && indent cargo diet -n --package-size-limit 5KB) (enter gix-credentials && indent cargo diet -n --package-size-limit 35KB) (enter gix-prompt && indent cargo diet -n --package-size-limit 15KB) -(enter gix-object && indent cargo diet -n --package-size-limit 25KB) +(enter gix-object && indent cargo diet -n --package-size-limit 30KB) (enter gix-commitgraph && indent cargo diet -n --package-size-limit 35KB) (enter gix-pack && indent cargo diet -n --package-size-limit 140KB) (enter gix-odb && indent cargo diet -n --package-size-limit 140KB) @@ -63,4 +58,4 @@ echo "in root: gitoxide CLI" (enter gix-packetline && indent cargo diet -n --package-size-limit 45KB) (enter gix && indent cargo diet -n --package-size-limit 280KB) (enter gix-transport && indent cargo diet -n --package-size-limit 95KB) -(enter gitoxide-core && indent cargo diet -n --package-size-limit 120KB) +(enter gitoxide-core && indent cargo diet -n --package-size-limit 160KB) diff --git a/gix-actor/Cargo.toml b/gix-actor/Cargo.toml index c0094f631b7..7a1e98bfc97 100644 --- a/gix-actor/Cargo.toml +++ b/gix-actor/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Sebastian Thiel "] repository = "https://github.com/Byron/gitoxide" license = "MIT OR Apache-2.0" edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-archive/Cargo.toml b/gix-archive/Cargo.toml index db70622f7cf..346f4e59127 100644 --- a/gix-archive/Cargo.toml +++ b/gix-archive/Cargo.toml @@ -7,7 +7,7 @@ description = "archive generation from of a worktree stream" authors = ["Sebastian Thiel "] edition = "2021" rust-version = "1.65" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] [lib] doctest = false diff --git a/gix-attributes/Cargo.toml b/gix-attributes/Cargo.toml index fd03a551364..6818efb05c5 100644 --- a/gix-attributes/Cargo.toml +++ b/gix-attributes/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project dealing .gitattributes files" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-bitmap/Cargo.toml b/gix-bitmap/Cargo.toml index 0dfbf68b28a..00d800b48c1 100644 --- a/gix-bitmap/Cargo.toml +++ b/gix-bitmap/Cargo.toml @@ -7,6 +7,7 @@ description = "A crate of the gitoxide project dedicated implementing the standa authors = ["Sebastian Thiel "] edition = "2021" rust-version = "1.65" +exclude = ["CHANGELOG.md"] [lib] doctest = false diff --git a/gix-chunk/Cargo.toml b/gix-chunk/Cargo.toml index f4b596be9a6..7f744ff9b77 100644 --- a/gix-chunk/Cargo.toml +++ b/gix-chunk/Cargo.toml @@ -7,7 +7,7 @@ repository = "https://github.com/Byron/gitoxide" documentation = "https://github.com/git/git/blob/seen/Documentation/technical/chunk-format.txt" license = "MIT OR Apache-2.0" edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-command/Cargo.toml b/gix-command/Cargo.toml index ae4c73dcc67..d63c1ecb319 100644 --- a/gix-command/Cargo.toml +++ b/gix-command/Cargo.toml @@ -7,7 +7,7 @@ description = "A crate of the gitoxide project handling internal git command exe authors = ["Sebastian Thiel "] edition = "2021" rust-version = "1.65" -include = ["src/lib.rs", "LICENSE-*", "CHANGELOG.md"] +include = ["src/lib.rs", "LICENSE-*"] [lib] doctest = false diff --git a/gix-commitgraph/Cargo.toml b/gix-commitgraph/Cargo.toml index aaf965dc700..380675844bf 100644 --- a/gix-commitgraph/Cargo.toml +++ b/gix-commitgraph/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0" description = "Read-only access to the git commitgraph file format" authors = ["Conor Davis ", "Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-config-value/Cargo.toml b/gix-config-value/Cargo.toml index afec734f7b0..dbd716e4b64 100644 --- a/gix-config-value/Cargo.toml +++ b/gix-config-value/Cargo.toml @@ -7,7 +7,7 @@ description = "A crate of the gitoxide project providing git-config value parsin authors = ["Sebastian Thiel "] edition = "2021" rust-version = "1.65" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] [lib] doctest = false diff --git a/gix-config/Cargo.toml b/gix-config/Cargo.toml index 5f647516c94..559b97e70d7 100644 --- a/gix-config/Cargo.toml +++ b/gix-config/Cargo.toml @@ -8,7 +8,7 @@ authors = ["Edward Shen "] edition = "2021" keywords = ["git-config", "git", "config", "gitoxide"] categories = ["config", "parser-implementations"] -include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*", "README.md"] rust-version = "1.65" autotests = false diff --git a/gix-credentials/Cargo.toml b/gix-credentials/Cargo.toml index be97ff61c9f..5b8843f3414 100644 --- a/gix-credentials/Cargo.toml +++ b/gix-credentials/Cargo.toml @@ -7,7 +7,7 @@ description = "A crate of the gitoxide project to interact with git credentials authors = ["Sebastian Thiel "] edition = "2021" rust-version = "1.65" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] [lib] doctest = false diff --git a/gix-date/Cargo.toml b/gix-date/Cargo.toml index 620b8d60d07..0ff92d88c42 100644 --- a/gix-date/Cargo.toml +++ b/gix-date/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project parsing dates the way git does" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-diff/Cargo.toml b/gix-diff/Cargo.toml index 0cae82fd812..b51eaaaa7da 100644 --- a/gix-diff/Cargo.toml +++ b/gix-diff/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "Calculate differences between various git objects" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" autotests = false diff --git a/gix-discover/Cargo.toml b/gix-discover/Cargo.toml index 5d1e18fdfed..f9ba63c8731 100644 --- a/gix-discover/Cargo.toml +++ b/gix-discover/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "Discover git repositories and check if a directory is a git repository" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-features/Cargo.toml b/gix-features/Cargo.toml index dff6f5dde92..2a5dd674da1 100644 --- a/gix-features/Cargo.toml +++ b/gix-features/Cargo.toml @@ -7,7 +7,7 @@ authors = ["Sebastian Thiel "] license = "MIT OR Apache-2.0" edition = "2021" rust-version = "1.65" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] [lib] doctest = false diff --git a/gix-filter/Cargo.toml b/gix-filter/Cargo.toml index 76964448cd2..ebf2682e18c 100644 --- a/gix-filter/Cargo.toml +++ b/gix-filter/Cargo.toml @@ -7,7 +7,7 @@ description = "A crate of the gitoxide project implementing git filters" authors = ["Sebastian Thiel "] edition = "2021" rust-version = "1.65" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] [lib] doctest = false diff --git a/gix-fs/Cargo.toml b/gix-fs/Cargo.toml index 96b6b592468..29a1d0b736d 100644 --- a/gix-fs/Cargo.toml +++ b/gix-fs/Cargo.toml @@ -7,7 +7,7 @@ description = "A crate providing file system specific utilities to `gitoxide`" authors = ["Sebastian Thiel "] edition = "2021" rust-version = "1.65" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] [lib] doctest = false diff --git a/gix-glob/Cargo.toml b/gix-glob/Cargo.toml index 19a960fe803..bb399dd2267 100644 --- a/gix-glob/Cargo.toml +++ b/gix-glob/Cargo.toml @@ -7,7 +7,7 @@ description = "A crate of the gitoxide project dealing with pattern matching" authors = ["Sebastian Thiel "] edition = "2021" rust-version = "1.65" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] [lib] doctest = false diff --git a/gix-hash/Cargo.toml b/gix-hash/Cargo.toml index 133b8c591e3..dceff6b2423 100644 --- a/gix-hash/Cargo.toml +++ b/gix-hash/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Sebastian Thiel "] repository = "https://github.com/Byron/gitoxide" license = "MIT OR Apache-2.0" edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-hashtable/Cargo.toml b/gix-hashtable/Cargo.toml index 553f767c794..ae7cd6384bb 100644 --- a/gix-hashtable/Cargo.toml +++ b/gix-hashtable/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate that provides hashtable based data structures optimized to utilize ObjectId keys" authors = ["Pascal Kuthe "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-ignore/Cargo.toml b/gix-ignore/Cargo.toml index ddc569295c7..a60ca86e05f 100644 --- a/gix-ignore/Cargo.toml +++ b/gix-ignore/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project dealing .gitignore files" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-index/Cargo.toml b/gix-index/Cargo.toml index bc6068a1b4d..9320daa51b0 100644 --- a/gix-index/Cargo.toml +++ b/gix-index/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A work-in-progress crate of the gitoxide project dedicated implementing the git index file" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*", "README.md"] rust-version = "1.65" autotests = false diff --git a/gix-lock/Cargo.toml b/gix-lock/Cargo.toml index d4e99a63a9a..73b56816667 100644 --- a/gix-lock/Cargo.toml +++ b/gix-lock/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A git-style lock-file implementation" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*", "README.md"] rust-version = "1.65" [lib] diff --git a/gix-macros/Cargo.toml b/gix-macros/Cargo.toml index 716618507f8..3bb24930c5b 100644 --- a/gix-macros/Cargo.toml +++ b/gix-macros/Cargo.toml @@ -10,7 +10,7 @@ authors = [ ] repository = "https://github.com/Byron/gitoxide" license = "MIT OR Apache-2.0" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-mailmap/Cargo.toml b/gix-mailmap/Cargo.toml index 0ac0256b625..b5b40c34c53 100644 --- a/gix-mailmap/Cargo.toml +++ b/gix-mailmap/Cargo.toml @@ -7,7 +7,7 @@ description = "A crate of the gitoxide project for parsing mailmap files" authors = ["Sebastian Thiel "] edition = "2021" rust-version = "1.65" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] [lib] doctest = false diff --git a/gix-negotiate/Cargo.toml b/gix-negotiate/Cargo.toml index 88b83cf1e49..a18aa87020f 100644 --- a/gix-negotiate/Cargo.toml +++ b/gix-negotiate/Cargo.toml @@ -7,7 +7,7 @@ description = "A crate of the gitoxide project implementing negotiation algorith authors = ["Sebastian Thiel "] edition = "2021" rust-version = "1.65" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] [lib] doctest = false diff --git a/gix-object/Cargo.toml b/gix-object/Cargo.toml index 4ab326deb24..fef2f6a5d8b 100644 --- a/gix-object/Cargo.toml +++ b/gix-object/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Sebastian Thiel "] repository = "https://github.com/Byron/gitoxide" license = "MIT OR Apache-2.0" edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-odb/Cargo.toml b/gix-odb/Cargo.toml index c6d9a9605c8..bafb78cbd93 100644 --- a/gix-odb/Cargo.toml +++ b/gix-odb/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Sebastian Thiel "] license = "MIT OR Apache-2.0" description = "Implements various git object databases" edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" autotests = false diff --git a/gix-pack/Cargo.toml b/gix-pack/Cargo.toml index 0857b998c43..7e4cdd80a0a 100644 --- a/gix-pack/Cargo.toml +++ b/gix-pack/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Sebastian Thiel "] license = "MIT OR Apache-2.0" description = "Implements git packs and related data structures" edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" autotests = false diff --git a/gix-packetline-blocking/Cargo.toml b/gix-packetline-blocking/Cargo.toml index a615cbbc904..f962c62fb02 100644 --- a/gix-packetline-blocking/Cargo.toml +++ b/gix-packetline-blocking/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A duplicate of `gix-packetline` with the `blocking-io` feature pre-selected" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-packetline/Cargo.toml b/gix-packetline/Cargo.toml index fb3c49ef433..a275160c4ee 100644 --- a/gix-packetline/Cargo.toml +++ b/gix-packetline/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project implementing the pkt-line serialization format" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-path/Cargo.toml b/gix-path/Cargo.toml index a172d40ecb0..3eaa0aad194 100644 --- a/gix-path/Cargo.toml +++ b/gix-path/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project dealing paths and their conversions" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-pathspec/Cargo.toml b/gix-pathspec/Cargo.toml index 10b0f25793a..5cd76ed0fc2 100644 --- a/gix-pathspec/Cargo.toml +++ b/gix-pathspec/Cargo.toml @@ -7,7 +7,7 @@ description = "A crate of the gitoxide project dealing magical pathspecs" authors = ["Sebastian Thiel "] edition = "2021" rust-version = "1.65" -include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*", "README.md"] [lib] doctest = false diff --git a/gix-prompt/Cargo.toml b/gix-prompt/Cargo.toml index f3fcf979604..ba740ddc383 100644 --- a/gix-prompt/Cargo.toml +++ b/gix-prompt/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project for handling prompts in the terminal" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*", "README.md"] rust-version = "1.65" [lib] diff --git a/gix-protocol/Cargo.toml b/gix-protocol/Cargo.toml index b20e54f62b6..c976838de03 100644 --- a/gix-protocol/Cargo.toml +++ b/gix-protocol/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project for implementing git protocols" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md", "!**/tests/**/*"] +include = ["src/**/*", "LICENSE-*", "!**/tests/**/*"] rust-version = "1.65" [lib] diff --git a/gix-quote/Cargo.toml b/gix-quote/Cargo.toml index bf7e4e27a94..c7bd9c9a34b 100644 --- a/gix-quote/Cargo.toml +++ b/gix-quote/Cargo.toml @@ -7,7 +7,7 @@ description = "A crate of the gitoxide project dealing with various quotations u authors = ["Sebastian Thiel "] edition = "2021" rust-version = "1.65" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] [lib] doctest = false diff --git a/gix-ref/Cargo.toml b/gix-ref/Cargo.toml index e08a7209606..eda5e808c82 100644 --- a/gix-ref/Cargo.toml +++ b/gix-ref/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate to handle git references" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" autotests = false diff --git a/gix-refspec/Cargo.toml b/gix-refspec/Cargo.toml index b296083b3d7..a1d8e2b8dbc 100644 --- a/gix-refspec/Cargo.toml +++ b/gix-refspec/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project for parsing and representing refspecs" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md", "README.md"] +include = ["src/**/*", "LICENSE-*", "README.md"] rust-version = "1.65" [lib] diff --git a/gix-revision/Cargo.toml b/gix-revision/Cargo.toml index 081a32c9c05..a7ef92aa815 100644 --- a/gix-revision/Cargo.toml +++ b/gix-revision/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project dealing with finding names for revisions and parsing specifications" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md", "README.md"] +include = ["src/**/*", "LICENSE-*", "README.md"] rust-version = "1.65" [lib] diff --git a/gix-revwalk/Cargo.toml b/gix-revwalk/Cargo.toml index fd1bc3e8367..b61fe252fbe 100644 --- a/gix-revwalk/Cargo.toml +++ b/gix-revwalk/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate providing utilities for walking the revision graph" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-sec/Cargo.toml b/gix-sec/Cargo.toml index d5cc1910931..996b7c60fb6 100644 --- a/gix-sec/Cargo.toml +++ b/gix-sec/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project providing a shared trust model" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-status/Cargo.toml b/gix-status/Cargo.toml index c4c7ef553f0..ea3263d0f35 100644 --- a/gix-status/Cargo.toml +++ b/gix-status/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project dealing with 'git status'-like functionality" authors = ["Sebastian Thiel ", "Pascal Kuthe "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" autotests = false diff --git a/gix-submodule/Cargo.toml b/gix-submodule/Cargo.toml index 8bbd0e4e0fe..678b3e3a4b3 100644 --- a/gix-submodule/Cargo.toml +++ b/gix-submodule/Cargo.toml @@ -7,7 +7,7 @@ description = "A crate of the gitoxide project dealing git submodules" authors = ["Sebastian Thiel "] edition = "2021" rust-version = "1.65" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] [lib] doctest = false diff --git a/gix-tempfile/Cargo.toml b/gix-tempfile/Cargo.toml index 2c54cc6d83c..baaebd686a8 100644 --- a/gix-tempfile/Cargo.toml +++ b/gix-tempfile/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A tempfile implementation with a global registry to assure cleanup" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*", "README.md"] rust-version = "1.65" [[example]] diff --git a/gix-trace/Cargo.toml b/gix-trace/Cargo.toml index 767e20ecb38..20a97c642a3 100644 --- a/gix-trace/Cargo.toml +++ b/gix-trace/Cargo.toml @@ -7,7 +7,7 @@ authors = ["Sebastian Thiel "] license = "MIT OR Apache-2.0" edition = "2021" rust-version = "1.65" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] [lib] doctest = false diff --git a/gix-transport/Cargo.toml b/gix-transport/Cargo.toml index d52372a9fb7..155d6acc96c 100644 --- a/gix-transport/Cargo.toml +++ b/gix-transport/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project dedicated to implementing the git transport layer" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-traverse/Cargo.toml b/gix-traverse/Cargo.toml index e666d0d2ce8..4d88bad441d 100644 --- a/gix-traverse/Cargo.toml +++ b/gix-traverse/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" autotests = false diff --git a/gix-url/Cargo.toml b/gix-url/Cargo.toml index 4309a6b7a20..1073bca79cd 100644 --- a/gix-url/Cargo.toml +++ b/gix-url/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project implementing parsing and serialization of gix-url" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md", "tests/baseline/**/*"] +include = ["src/**/*", "LICENSE-*", "tests/baseline/**/*"] rust-version = "1.65" [lib] diff --git a/gix-utils/Cargo.toml b/gix-utils/Cargo.toml index 77c4967c084..789b5e56fe6 100644 --- a/gix-utils/Cargo.toml +++ b/gix-utils/Cargo.toml @@ -7,7 +7,7 @@ description = "A crate with `gitoxide` utilities that don't need feature toggles authors = ["Sebastian Thiel "] edition = "2021" rust-version = "1.65" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] [lib] doctest = false diff --git a/gix-validate/Cargo.toml b/gix-validate/Cargo.toml index fa0cbc6b165..cc62a5183c4 100644 --- a/gix-validate/Cargo.toml +++ b/gix-validate/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "Validation functions for various kinds of names in git" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib] diff --git a/gix-worktree-state/Cargo.toml b/gix-worktree-state/Cargo.toml index 0bf9c5fa5a5..be78fa7c64b 100644 --- a/gix-worktree-state/Cargo.toml +++ b/gix-worktree-state/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project implementing setting the worktree to a particular state" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" autotests = false diff --git a/gix-worktree-stream/Cargo.toml b/gix-worktree-stream/Cargo.toml index 9045214c3b8..a4da2480fd4 100644 --- a/gix-worktree-stream/Cargo.toml +++ b/gix-worktree-stream/Cargo.toml @@ -7,7 +7,7 @@ description = "generate a byte-stream from a git-tree" authors = ["Sebastian Thiel "] edition = "2021" rust-version = "1.65" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] [lib] doctest = false diff --git a/gix-worktree/Cargo.toml b/gix-worktree/Cargo.toml index 2bacc31ce68..f7208fcd705 100644 --- a/gix-worktree/Cargo.toml +++ b/gix-worktree/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project for shared worktree related types and utilities." authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" autotests = false diff --git a/gix/Cargo.toml b/gix/Cargo.toml index d19ee72ab2e..631023fde27 100644 --- a/gix/Cargo.toml +++ b/gix/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" version = "0.55.2" authors = ["Sebastian Thiel "] edition = "2021" -include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"] +include = ["src/**/*", "LICENSE-*"] rust-version = "1.65" [lib]