chore(deps): bump the rust-dependencies group across 1 directory with 32 updates
Type: Pull Request
State: Closed
Association: Unknown
Comments: 2
(9 days ago)
(3 days ago)
(3 days ago)
dependencies
Bumps the rust-dependencies group with 24 updates in the /workspace directory:
| Package | From | To |
|---|---|---|
| clap | 4.6.0 |
4.6.1 |
| git2 | 0.20.4 |
0.21.0 |
| serde_json | 1.0.149 |
1.0.150 |
| tabled | 0.20.0 |
0.21.0 |
| toml | 0.9.12+spec-1.1.0 |
1.1.2+spec-1.1.0 |
| tokio | 1.52.1 |
1.52.3 |
| assert_cmd | 2.2.0 |
2.2.2 |
| autocfg | 1.5.0 |
1.5.1 |
| bitflags | 2.11.0 |
2.11.1 |
| bumpalo | 3.20.2 |
3.20.3 |
| cc | 1.2.58 |
1.2.63 |
| fastrand | 2.3.0 |
2.4.1 |
| indexmap | 2.13.0 |
2.14.0 |
| libc | 0.2.183 |
0.2.186 |
| libredox | 0.1.15 |
0.1.17 |
| libz-sys | 1.1.25 |
1.1.29 |
| log | 0.4.29 |
0.4.30 |
| memchr | 2.8.0 |
2.8.1 |
| mio | 1.2.0 |
1.2.1 |
| pkg-config | 0.3.32 |
0.3.33 |
| semver | 1.0.27 |
1.0.28 |
| socket2 | 0.6.3 |
0.6.4 |
| unicode-segmentation | 1.13.2 |
1.13.3 |
| wasip2 | 1.0.2+wasi-0.2.9 |
1.0.3+wasi-0.2.9 |
Updates clap from 4.6.0 to 4.6.1
Release notes
Sourced from clap's releases.
v4.6.1
[4.6.1] - 2026-04-15
Fixes
- (derive) Ensure rebuilds happen when an read env variable is changed
Changelog
Sourced from clap's changelog.
[4.6.1] - 2026-04-15
Fixes
- (derive) Ensure rebuilds happen when an read env variable is changed
Commits
1420275chore: Released2c817ddocs: Update changelogf88c94eMerge pull request #6341 from epage/sepacbb822fix(complete): Reduce risk of conflict with actual subcommandsa49fadbrefactor(complete): Pull out subcommand separatorddc008bMerge pull request #6332 from epage/update497dc50chore: Update compatible dependenciesdca2326Merge pull request #6331 from clap-rs/renovate/j178-prek-action-2.x54bdaa3chore(deps): Update j178/prek-action action to v2f0d30d9chore: Release- Additional commits viewable in compare view
Updates git2 from 0.20.4 to 0.21.0
Changelog
Sourced from git2's changelog.
0.21.0 - 2026-05-18
Added
- Added experimental SHA256 repository support behind the new
unstable-sha256Cargo feature, along with*_extAPI variants that accept anObjectFormat. #1206- Added
opts::set_cache_max_size()andopts::get_cached_memory(). #1188- Added
Repository::object_format()and a newObjectFormatenum. #1204- Added
Repository::set_config(). #1208- Added
merge_file()along withMergeFileInput. #1210- Added
Repository::refdb_compress()for packing loose refs. #1221- Added public
Refdbtype, along withRepository::refdb()andRepository::set_refdb().Repository::refdb_compress()now delegates toRefdb::compress(). #1228- Added
Revspec::into_objects(). #1230- Added
BlameHunk::final_committer(),BlameHunk::orig_committer(),BlameHunk::summary(), andBlameHunk::summary_bytes(). #1231- Implemented
CloneforReference. #1233- Added
Repository::author_from_env()andRepository::committer_from_env(). #1237- Added
impl From<Utf8Error> for Error. #1239Changed
- ❗ The
ssh,https, andcredCargo features are no longer enabled by default. Previouslydefault = ["ssh", "https"]; nowdefault = []. Enable them explicitly if you rely on credential helpers or transport support. #1168- ❗
CredentialHelperand theurldependency are now gated behind the newcredCargo feature. Enablingsshorhttpstransitively enablescred. #1168- ❗ Updated to the 2021 edition. #1173
- ❗ Many string accessors that previously returned
Option<&str>now returnResult<&str, Error>orResult<Option<&str>, Error>, so callers can distinguish a missing value from a non-UTF-8 one. #1241- ❗
BlameHunk::final_signature,BlameHunk::final_committer,BlameHunk::orig_signature, andBlameHunk::orig_committernow returnOptionto avoid segfaults when signature information is missing. #1254- Bumped requirement to libgit2-sys 0.18.4, which updates libgit2 to 1.9.3.
... (truncated)
Commits
dffaf27Merge pull request #1256 from weihanglo/changelog84b9c76docs: changelog for git2@0.218c6dc4aMerge pull request #1206 from weihanglo/sha256-git27bd145efix: importObjectFormatin one placefc8af6atest(oid): split_extto test each format separatelyb9bde87test: oid length sanity check57a68e0feat(oid): impl Display for ObjectFormat7acee09chore(ci): test git2 sha256 supportbdf5b7bfix: init example with--object-formatoption9fb4e6arefactor(util): dropunsafefromzeroed_raw_oid- Additional commits viewable in compare view
Updates serde_json from 1.0.149 to 1.0.150
Release notes
Sourced from serde_json's releases.
v1.0.150
- Reject non-string enum object keys (#1324, thanks
@puneetdixit200)
Commits
a1ae73aRelease 1.0.1501a360b0Merge pull request #1324 from puneetdixit200/reject-non-string-enum-keys2037b63Reject non-string enum object keys5d30df6Resolve manual_assert_eq pedantic clippy lintdc8003aRaise required compiler for preserve_order feature to 1.85a42fa98Unpin CI miri toolchain684a60ePin CI miri to nightly-2026-02-117c7da33Raise required compiler to Rust 1.71acf4850Simplify Number::is_f646b8ceabResolve unnecessary_map_or clippy lint- Additional commits viewable in compare view
Updates tabled from 0.20.0 to 0.21.0
Changelog
Sourced from tabled's changelog.
[0.21.0] - 2026-06-01
Added
- Added
Color::is_emptyfunction (by@mvanhorn).- Added
Settings::modifyfunction (by@mvanhorn).- Added qc test for wrap (by
@mvanhorn).- Added
LineText::limitfunction (by@mvanhorn).- Added
ColumnNames::padding.Changed
- Reworked
Charset(by@mvanhorn).- Removed
TabSizein favor ofCharset::tab_size().- Changed
ColumnNamesinterface - splited it intoColumnNamesandRowNames.Fixed
- Fixed
Wrapstrings with 0 width (by@ymcx).- Improved examples (by
@alexanderkjall).- Remove broken LICENSE symlink (by
@mvanhorn).- Fixed CHANGELOG.md (by
@mvanhorn).- Fixed clippy issue (by
@akiomik).- Fixed documentation (by
@akiomik).- Fixed documentation (by
@darko-mesaros).- Fixed documentation (by
@brownjohnf).- Fixed documentation (by
@spiritualhost).- Fixed wrong render of vertical char in case of
Span(corner case).- Fixed
BorderCorrection::spanwhenSpan::columnandSpan::rowis used for same cell (corner case).
Commits
- See full diff in compare view
Updates toml from 0.9.12+spec-1.1.0 to 1.1.2+spec-1.1.0
Commits
a3d0047chore: Releasecc37615docs: Update changelog7f5e9e1fix(parser): Consolidate invalid unquoted key into one error (#1138)52feb90fix(parser): Consolidate invalid unquoted key into one erroraad85d4chore(deps): Update j178/prek-action action to v2 (#1136)8b1ac44chore(deps): Update compatible (dev) (#1135)9effd79chore(deps): Update j178/prek-action action to v29db8aadchore: Releasee55a663docs: Update changelogc11d7d7Optimisations (#1133)- Additional commits viewable in compare view
Updates tokio from 1.52.1 to 1.52.3
Release notes
Sourced from tokio's releases.
Tokio v1.52.3
1.52.3 (May 8th, 2026)
Fixed
- sync: fix underflow in mpsc channel
len()(#8062)- sync: notify receivers in mpsc
OwnedPermit::release()method (#8075)- sync: require that an
RwLockhasmax_readers != 0(#8076)- sync: return
Emptyfromtry_recv()when mpsc is closed with outstanding permits (#8074)#8062: tokio-rs/tokio#8062 #8074: tokio-rs/tokio#8074 #8075: tokio-rs/tokio#8075 #8076: tokio-rs/tokio#8076
Tokio v1.52.2
1.52.2 (May 4th, 2026)
This release reverts the LIFO slot stealing change introduced in 1.51.0 (#7431), due to [its performance impact]#8065. (#8100)
#7431: tokio-rs/tokio#7431 #8065: tokio-rs/tokio#8065 #8100: tokio-rs/tokio#8100
Commits
d875691chore: prepare Tokio v1.52.3 (#8130)e1aebb0Merge 'tokio-1.51.3' into 'tokio-1.52.x' (#8129)fd63094chore: prepare Tokio v1.51.3 (#8127)8c600d0Merge 'tokio-1.47.5' into 'tokio-1.51.x' (#8123)11bfc13chore: prepare Tokio v1.47.5 (#8122)f085b62sync: notify receivers in mpscOwnedPermit::release()method (#8075)30d25ccsync: require that anRwLockhasmax_readers != 0(#8076)9fccf53sync: returnEmptyfromtry_recv()when mpsc is closed with outstanding p...ebf61b4sync: fix underflow in mpsc channellen()(#8062)4abe9d7chore: prepare Tokio v1.52.2 (#8115)- Additional commits viewable in compare view
Updates assert_cmd from 2.2.0 to 2.2.2
Changelog
Sourced from assert_cmd's changelog.
[2.2.2] - 2026-05-11
Fixes
- Ensure
#[track_caller]works for better panic messages[2.2.1] - 2026-04-17
Internal
- Dependency update
Commits
feece89chore: Release assert_cmd version 2.2.2367cdf7docs: Update changeloga98cc85Merge pull request #289 from marcospb19/track_callercd2e167fix: .success() not reporting panic location45a1c74chore(deps): Update Prek to v0.3.13 (#293)f1d9b5bchore(deps): Update Prek to v0.3.12 (#292)1d34babMerge pull request #291 from epage/templated9a70adstyle: Make clippy happy4f5b5afchore: Update from _rust template1e1d586chore(renovate): Fix the tag- Additional commits viewable in compare view
Updates autocfg from 1.5.0 to 1.5.1
Commits
Updates bitflags from 2.11.0 to 2.11.1
Release notes
Sourced from bitflags's releases.
2.11.1
What's Changed
- Bless compile-fail tests for current beta by
@DanielEScherzerin bitflags/bitflags#478- example_generated.rs: add missing third slash for doc comment by
@DanielEScherzerin bitflags/bitflags#477- Clarify self and other in method docs by
@KodrAusin bitflags/bitflags#481- Prepare for 2.11.1 release by
@KodrAusin bitflags/bitflags#482New Contributors
@DanielEScherzermade their first contribution in bitflags/bitflags#478Full Changelog: https://github.com/bitflags/bitflags/compare/2.11.0...2.11.1
Changelog
Sourced from bitflags's changelog.
2.11.1
What's Changed
- Bless compile-fail tests for current beta by
@DanielEScherzerin bitflags/bitflags#478- example_generated.rs: add missing third slash for doc comment by
@DanielEScherzerin bitflags/bitflags#477- Clarify self and other in method docs by
@KodrAusin bitflags/bitflags#481New Contributors
@DanielEScherzermade their first contribution in bitflags/bitflags#478Full Changelog: https://github.com/bitflags/bitflags/compare/2.11.0...2.11.1
Commits
4ed9ffaMerge pull request #482 from KodrAus/cargo/2.11.1c53cd57prepare for 2.11.1 releasea44410aMerge pull request #481 from KodrAus/docs/clarifications3d671b9update more compile error messages5f3adadfix up compile error messages780765dfix up contains and intersection docs97b7607clarify self and other in method docs88a7a18Merge pull request #477 from DanielEScherzer/patch-1f0e4646example_generated.rs: add missing third slash for doc commenta31c96fMerge pull request #478 from DanielEScherzer/beta-bless- Additional commits viewable in compare view
Updates bumpalo from 3.20.2 to 3.20.3
Changelog
Sourced from bumpalo's changelog.
3.20.3
Released 2026-05-22.
Fixed
- Fixed the
try_alloc_slice_fill_with,alloc_slice_try_fill_with,alloc_slice_fill_withmethods to properly rewind the bump pointer on allocation, initialization, and panic failure and avoid wasting bump capacity.- Fixed a drop bug in
bumpalo::collections::vec::DrainFilter(used byretainandretain_mut) when the predicate panics.
Commits
84654acRewind on slice allocation failure (#324)5325624Fix a couple bugs (#323)fcf8370Fix UB inAllocator::grow_zeroed(#321)657caf8test: fix test for OOM instead of overflow (#320)1db9be9fix: fix typo in comment (#318)a47f6d6fix: bump pointer/bump chunk debug assertion (#313)0b12966Update Cargo.toml with keywords (#303)- See full diff in compare view
Updates cc from 1.2.58 to 1.2.63
Release notes
Sourced from cc's releases.
cc-v1.2.63
Other
- Update shlex requirement from 1.3.0 to 2.0.1 (#1736)
cc-v1.2.62
Other
- Regenerate target info (#1721)
- Allow exceptions on wasm platforms (#1714)
- Add relibc env (#1710)
- recognize sh4 architecture in parse_arch() (#1712)
cc-v1.2.61
Other
- fix
OutputKind::Capturedocumentation (#1705)cc-v1.2.60
Fixed
- (ar) suppress warnings from
Dmodifier probe (#1700)cc-v1.2.59
Fixed
- (ar) deterministic archives with
Dmodifier (#1697)Other
Changelog
Sourced from cc's changelog.
1.2.63 - 2026-05-29
Other
- Update shlex requirement from 1.3.0 to 2.0.1 (#1736)
1.2.62 - 2026-05-08
Other
- Regenerate target info (#1721)
- Allow exceptions on wasm platforms (#1714)
- Add relibc env (#1710)
- recognize sh4 architecture in parse_arch() (#1712)
1.2.61 - 2026-04-24
Other
- fix
OutputKind::Capturedocumentation (#1705)1.2.60 - 2026-04-10
Fixed
- (ar) suppress warnings from
Dmodifier probe (#1700)1.2.59 - 2026-04-03
Fixed
- (ar) deterministic archives with
Dmodifier (#1697)Other
Commits
b49589achore(cc): release v1.2.63 (#1740)71a5688Update shlex requirement from 1.3.0 to 2.0.1 (#1736)6361640Bump release-plz/action from 0.5.128 to 0.5.129 (#1728)225326aBump taiki-e/install-action from 2.75.28 to 2.77.6 (#1729)aa3088dBump taiki-e/install-action from 2.75.19 to 2.75.28 (#1722)37a5f8fchore(cc): release v1.2.62 (#1716)34a2218Regenerate target info (#1721)a9d8632Allow exceptions on wasm platforms (#1714)ce036b3Add relibc env (#1710)18ed3dctarget: recognize sh4 architecture in parse_arch() (#1712)- Additional commits viewable in compare view
Updates clap_derive from 4.6.0 to 4.6.1
Release notes
Sourced from clap_derive's releases.
v4.6.1
[4.6.1] - 2026-04-15
Fixes
- (derive) Ensure rebuilds happen when an read env variable is changed
Changelog
Sourced from clap_derive's changelog.
[4.6.1] - 2026-04-15
Fixes
- (derive) Ensure rebuilds happen when an read env variable is changed
Commits
ac5fda6chore: Releaseb73c627docs: Update changelog44cfb34Merge pull request #6346 from TomPlanche/fix/cargo-env-incremental-rebuild34ef8a0fix(derive): Track Cargo env vars for incremental rebuilds0fe0be3chore: Release480af9ddocs: Update changelog2b3ddd0Merge pull request #6340 from liskin/fix-completion-escape7ffe739fix(complete): Do not suggest options after "--"d47fc4ftest(complete): Options suggested after escape (--)1420275chore: Release- Additional commits viewable in compare view
Updates fastrand from 2.3.0 to 2.4.1
Release notes
Sourced from fastrand's releases.
v2.4.1
- Fix build failure with
jsfeature. (#125)v2.4.0
Changelog
Sourced from fastrand's changelog.
Version 2.4.1
- Fix build failure with
jsfeature. (#125)Version 2.4.0
Commits
728a5b5Release 2.4.10c619f6Fix build failure with js featurea4077e2ci: Add missing js feature test1fd5bbbRelease 2.4.0 (#116)074345bchore: make some documents clearer (#115)ce9a48cchore: update dependencies to latest versions and bump MSRV to 1.63 (#104)978dde1ci: Use reusable workflows for clippy8561f13bench: Add benchmark of f32()1def02cFix rustdoc::broken_intra_doc_links warningc2cbdd4Remove manual doc(cfg(..))- Additional commits viewable in compare view
Updates indexmap from 2.13.0 to 2.14.0
Changelog
Sourced from indexmap's changelog.
2.14.0 (2026-04-09)
- MSRV: Rust 1.85.0 or later is now required.
- Updated the
hashbrowndependency to 0.17.- Made more
map::Slicemethodsconst:new_mut,first_mut,last_mut,split_at_mut,split_at_mut_checked,split_first_mut,split_last_mut2.13.1 (2026-04-02)
- Made some
Slicemethodsconst:
map::Slice::{first,last,split_at,split_at_checked,split_first,split_last}set::Slice::{first,last,split_at,split_at_checked,split_first,split_last}
Commits
bcd165bMerge pull request #439 from cuviper/release-2.14.04ef06a7Release 2.14.0d21826cMerge pull request #438 from cuviper/hashbrown-0.172566becUpgrade tohashbrown v0.174b62776Merge pull request #437 from cuviper/disjoint-panic478fba2Normalize the panic doc ofget_disjoint_mutfb6dafdMerge pull request #436 from cuviper/const-slice-mut5c237a2MakeSlice::{first,last,split_*}_mutmethodsconst48ff9ceMerge pull request #435 from cuviper/edition-2024648be98cargo fmtwith edition 2024- Additional commits viewable in compare view
Updates libc from 0.2.183 to 0.2.186
Release notes
Sourced from libc's releases.
0.2.186
Added
- Apple: Add
KEVENT_FLAG_*constants (#5070)- Linux: Add
PR_SET_MEMORY_MERGEandPR_GET_MEMORY_MERGE(#5060)Changed
- CI: Migrate FreeBSD CI from Cirrus CI to GitHub Actions (#5058)
0.2.185
Added
- EspIDF: Add
espidf_picolibccfg for picolibcO_*flag values (#5035)- Hexagon: add missing constants and fix types for linux-musl (#5042)
- Redox: Add semaphore functions (#5051)
- Windows: Add
sprintf,snprintf, and thescanffamily (#5024)Fixed
- Hexagon: Decouple
time64types from musl symbol redirects (#5040)- Horizon: Change
POLLconstants fromc_shorttoc_int(#5045)0.2.184
MSRV
This release increases the MSRV of
libcto 1.65. With this update, you can now always use thecore::ffi::c_*types withlibcdefinitions, sincelibchas been changed to reexport fromcorerather than redefining them. (This usually worked before but had edge cases.) (#4972)Added
- BSD: Add
IP_MINTTLto bsd (#5026)- Cygwin: Add
TIOCM_DSR(#5031)- FreeBSD: Added
xfilestructe and file descriptor types (#5002)- Linux: Add CAN netlink bindings (#5011)
- Linux: Add
struct ethhdr(#4239)- Linux: Add
struct ifinfomsg(#5012)- Linux: Define
max_align_tfor riscv64 (#5029)- NetBSD: Add missing
CLOCK_constants (#5020)- NuttX: Add
_SC_HOST_NAME_MAX(#5004)- VxWorks: Add
flockandF_*LCKconstants (#4043)- WASI: Add all
_SC_*sysconf constants (#5023)Deprecated
The remaining fixed-width integer aliases,
__uint128_t,__uint128,__int128_t, and__int128, have been deprecated. Usei128andu128instead. (#4343)
... (truncated)
Changelog
Sourced from libc's changelog.
0.2.186 - 2026-04-24
Added
- Apple: Add
KEVENT_FLAG_*constants (#5070)- Linux: Add
PR_SET_MEMORY_MERGEandPR_GET_MEMORY_MERGE(#5060)Changed
- CI: Migrate FreeBSD CI from Cirrus CI to GitHub Actions (#5058)
0.2.185 - 2026-04-13
Added
- EspIDF: Add
espidf_picolibccfg for picolibcO_*flag values (#5035)- Hexagon: add missing constants and fix types for linux-musl (#5042)
- Redox: Add semaphore functions (#5051)
- Windows: Add
sprintf,snprintf, and thescanffamily (#5024)Fixed
- Hexagon: Decouple
time64types from musl symbol redirects (#5040)- Horizon: Change
POLLconstants fromc_shorttoc_int(#5045)0.2.184 - 2026-04-01
MSRV
This release increases the MSRV of
libcto 1.65. With this update, you can now always use thecore::ffi::c_*types withlibcdefinitions, sincelibchas been changed to reexport fromcorerather than redefining them. (This usually worked before but had edge cases.) (#4972)Added
- BSD: Add
IP_MINTTLto bsd (#5026)- Cygwin: Add
TIOCM_DSR(#5031)- FreeBSD: Added
xfilestructe and file descriptor types (#5002)- Linux: Add CAN netlink bindings (#5011)
- Linux: Add
struct ethhdr(#4239)- Linux: Add
struct ifinfomsg(#5012)- Linux: Define
max_align_tfor riscv64 (#5029)- NetBSD: Add missing
CLOCK_constants (#5020)- NuttX: Add
_SC_HOST_NAME_MAX(#5004)- VxWorks: Add
flockandF_*LCKconstants (#4043)- WASI: Add all
_SC_*sysconf constants (#5023)Deprecated
... (truncated)
Commits
42620ff[0.2] libc: Release 0.2.1869db2eaaapple: add KEVENT_FLAG_* constants3840939Add PR_SET_MEMORY_MERGE and PR_GET_MEMORY_MERGE for linuxf697debchore: migrate from Cirrus CI to GHA71d5bfclibc: Release 0.2.1851027d1cRevert "ci: Pin nightly to 2026-04-01"0e9c6e5redox: Add semaphore functions24ef457feat: add back support for gnu windows x86 in ciaa75cafhorizon: Change POLL constants from c_short to c_intb7eda5ahexagon: add missing constants and fix types for linux-musl- Additional commits viewable in compare view
Updates libgit2-sys from 0.18.3+1.9.2 to 0.18.5+1.9.4
Commits
- See full diff in compare view
Updates libredox from 0.1.15 to 0.1.17
Updates libz-sys from 1.1.25 to 1.1.29
Release notes
Sourced from libz-sys's releases.
1.1.29
What's Changed
- Create a new
mainttool to prevent common publishing mistakes (#265) by@Byronin rust-lang/libz-sys#266- Bump actions/upload-artifact from 7.0.0 to 7.0.1 in the github-actions group by
@dependabot[bot] in rust-lang/libz-sys#267- zlib-ng: Include loongarch architecture folder by
@Gelbpunktin rust-lang/libz-sys#269New Contributors
@Gelbpunktmade their first contribution in rust-lang/libz-sys#269Full Changelog: https://github.com/rust-lang/libz-sys/compare/1.1.27...1.1.29
1.1.28
This release is mainly for testing the new
mainttool to prevent wrong releases in future.It also adds a macOS fix for when the
ccbased build script is used.1.1.27
What's Changed
- Bump actions/download-artifact from 8.0.0 to 8.0.1 in the github-actions group by
@dependabot[bot] in rust-lang/libz-sys#263- fix(zlib): remove unnecessary defines by
@weihangloin rust-lang/libz-sys#264New Contributors
@weihanglomade their first contribution in rust-lang/libz-sys#264Full Changelog: https://github.com/rust-lang/libz-sys/compare/1.1.25...1.1.27
1.1.26 [YANKED]
YANKED
These didn't contain the actual source code and thus wasn't functional.
What's Changed
- Bump actions/download-artifact from 8.0.0 to 8.0.1 in the github-actions group by
@dependabot[bot] in rust-lang/libz-sys#263- fix(zlib): remove unnecessary defines by
@weihangloin rust-lang/libz-sys#264New Contributors
@weihanglomade their first contribution in rust-lang/libz-sys#264Full Changelog: https://github.com/rust-lang/libz-sys/compare/1.1.25...1.1.26
Commits
c589ac5Merge pull request #269<...Description has been truncated
Technical Details
| ID: | 16019234 |
| UUID: | 4566163966 |
| Node ID: | PR_kwDORtgfVc7hhJ4R |
| Host: | GitHub |
| Repository: | KiTechSoftware/commit-wizard |