extrawurst
e299017e79
crossbeam-channel upgrade
2025-04-11 06:08:26 +03:00
extrawurst
eeebb0a647
fix cargo deny advisory warning ( #2598 )
2025-04-07 18:02:34 +02:00
extrawurst
cc907996f4
fix latest clippy ( #2597 )
2025-04-07 16:06:00 +02:00
Johannes Agricola
7f75307f6e
Resolve core.hooksPath relative to GIT_WORK_TREE ( #2571 )
...
* Resolve core.hooksPath relative to GIT_WORK_TREE
git supports relative values in core.hooksPath.
`man git-config`:
> A relative path is taken as relative to the directory where the hooks are
> run (see the "DESCRIPTION" section of githooks[5]).
`man githooks`:
> Before Git invokes a hook, it changes its working directory to either
> $GIT_DIR in a bare repository or the root of the working tree in a >
> non-bare repository.
I.e. relative paths in core.hooksPath in non-bare repositories are always
relative to GIT_WORK_TREE.
There is a further exception; I believe this is not considered for path
resolution:
> An exception are hooks triggered during a push (pre-receive, update,
> post-receive, post-update, push-to-checkout) which are always executed
> in $GIT_DIR.
* Favor Repository::workdir() over path().parent()
This more clearly errors in case of bare repositories instead of using
the parent directory of the bare repository.
---------
Co-authored-by: Naseschwarz <naseschwarz@0x53a.de>
Co-authored-by: extrawurst <776816+extrawurst@users.noreply.github.com>
2025-04-04 15:28:44 +02:00
Johannes Agricola
89f73d2ec2
Disable dotted range commit yanking ( #2577 )
...
The algorithm for computing marked_consecutive assumes that commits are
consecutive in the commit graph if they are consecutive in the
linearized log used in` commitlist.rs`. That is not universally correct,
as siblings may also be displayed consecutively in this list.
For now, this just removes generating commit lists in dotted range
notation.
Co-authored-by: Naseschwarz <naseschwarz@0x53a.de>
2025-04-04 15:27:50 +02:00
dependabot[bot]
156381155e
Bump clap from 4.5.32 to 4.5.34 ( #2585 )
...
Bumps [clap](https://github.com/clap-rs/clap ) from 4.5.32 to 4.5.34.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.32...clap_complete-v4.5.34 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-27 13:22:09 +08:00
dependabot[bot]
369ea6a140
Bump struct-patch from 0.8.7 to 0.9.0 ( #2583 )
...
Bumps [struct-patch](https://github.com/yanganto/struct-patch ) from 0.8.7 to 0.9.0.
- [Release notes](https://github.com/yanganto/struct-patch/releases )
- [Commits](https://github.com/yanganto/struct-patch/compare/v0.8.7...v0.9.0 )
---
updated-dependencies:
- dependency-name: struct-patch
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-26 07:23:23 +01:00
Johannes Agricola
6a884d1388
Consolidate recent theme change docs in THEMES.md ( #2575 )
2025-03-22 19:43:43 +01:00
Clément
65b57c4b60
feat(ui): Add use_selection_fg flag to control selection foreground color ( #2515 )
2025-03-22 14:11:54 +01:00
Johannes Agricola
dcd9a00ff3
Check cargo sort in make check ( #2572 )
...
This is run in CI, so running this offline avoids an unnecessary CI
failure.
2025-03-22 11:53:03 +01:00
Lena
ad32993721
Support loading custom syntax themes from a file ( #2565 )
2025-03-20 00:31:09 +01:00
Lena
92ef9f6fde
Respect .mailmap ( #2485 )
2025-03-19 14:44:02 +01:00
Lena
3ede6b56f1
Set the terminal title to gitui ({repo_path}) ( #2484 )
2025-03-18 19:23:16 +01:00
extrawurst
5755c096b4
update base64 and ron
2025-03-18 18:59:19 +01:00
vlad-anger
979fa68837
Push with refspec ( #2542 )
...
* push: respect `branch.*.merge` when push default is upstream
2025-03-18 18:35:39 +01:00
Johannes Agricola
a91132d187
Bump git2 from 0.20.0 to 0.20.1 ( #2567 )
...
* Bump git2 from 0.20.0 to 0.20.1
Bumps [git2](https://github.com/rust-lang/git2-rs ) from 0.20.0 to 0.20.1.
- [Changelog](https://github.com/rust-lang/git2-rs/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/git2-rs/compare/git2-0.20.0...git2-0.20.1 )
---
updated-dependencies:
- dependency-name: git2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
* Avoid passing reference into struct
git2-rs changed the lifetime of the result of Patch::hunk() to reference
the patch struct:
https://github.com/rust-lang/git2-rs/pull/1141
Thus, returning a patch struct and a reference into it is flagged by the
borrow checker upon move when returning.
This patch avoids returning both alltogether by separating retrieving
and retrieving the patch.
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Naseschwarz <naseschwarz@0x53a.de>
2025-03-18 09:09:11 +01:00
Vasileios Manolopoulos
597e944af9
Select out of the defaults syntect syntax themes in theme.ron ( #2532 )
2025-03-16 22:06:28 +01:00
Vasley
4031b0d1a7
Change links to point to gitui-org instead of extrawurst ( #2538 )
2025-03-16 15:33:28 +01:00
Wessam
4ad2c4b271
Dismiss commit msg key ( #2563 )
2025-03-16 15:32:43 +01:00
Lena
4ccdeed3a2
Add --logfile ( #2539 )
...
Co-authored-by: extrawurst <776816+extrawurst@users.noreply.github.com>
2025-03-16 15:30:02 +01:00
Fatpandac
1f3bd0ff70
add .editorconfig file ( #2497 )
...
* chore: add .editorconfig file
* feat: add root config to .editorconfig
Co-authored-by: Johannes Agricola <naseschwarz@users.noreply.github.com>
---------
Co-authored-by: Johannes Agricola <naseschwarz@users.noreply.github.com>
2025-03-16 15:27:31 +01:00
dependabot[bot]
35b2529c52
Bump bitflags from 2.8.0 to 2.9.0 ( #2544 )
...
Bumps [bitflags](https://github.com/bitflags/bitflags ) from 2.8.0 to 2.9.0.
- [Release notes](https://github.com/bitflags/bitflags/releases )
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md )
- [Commits](https://github.com/bitflags/bitflags/compare/2.8.0...2.9.0 )
---
updated-dependencies:
- dependency-name: bitflags
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-15 10:07:15 +01:00
dependabot[bot]
9b3a4eb3d8
Bump chrono from 0.4.39 to 0.4.40 ( #2540 )
...
Bumps [chrono](https://github.com/chronotope/chrono ) from 0.4.39 to 0.4.40.
- [Release notes](https://github.com/chronotope/chrono/releases )
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md )
- [Commits](https://github.com/chronotope/chrono/compare/v0.4.39...v0.4.40 )
---
updated-dependencies:
- dependency-name: chrono
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-15 10:07:03 +01:00
dependabot[bot]
6eafd9ead4
Bump bytesize from 2.0.0 to 2.0.1 ( #2545 )
...
Bumps [bytesize](https://github.com/bytesize-rs/bytesize ) from 2.0.0 to 2.0.1.
- [Release notes](https://github.com/bytesize-rs/bytesize/releases )
- [Changelog](https://github.com/bytesize-rs/bytesize/blob/master/CHANGELOG.md )
- [Commits](https://github.com/bytesize-rs/bytesize/commits/bytesize-v2.0.1 )
---
updated-dependencies:
- dependency-name: bytesize
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-15 09:45:39 +01:00
Johannes Agricola
3c1e35eec7
Copy text using OSC52 ( #2548 )
...
* Copy text using OSC52 if X/Wayland methods fail
* Move Wayland/X string copying out of copy_string
Copying logic seems too nested to comprehend with the introcution of two
paths towards OSC52 otherwise.
---------
Co-authored-by: Naseschwarz <naseschwarz@0x53a.de>
Co-authored-by: extrawurst <776816+extrawurst@users.noreply.github.com>
2025-03-15 09:33:54 +01:00
Johannes Agricola
381ab45d3a
Ignore RUSTSEC-2024-0436 ( #2562 )
...
cargo deny reports:
```
ID: RUSTSEC-2024-0436
Advisory: https://rustsec.org/advisories/RUSTSEC-2024-0436
The creator of the crate `paste` has stated in the [`README.md`](https://github.com/dtolnay/paste/blob/master/README.md )
that this project is not longer maintained as well as archived the repository
Announcement: https://github.com/dtolnay/paste
Solution: No safe upgrade is available!
paste v1.0.15
└── ratatui v0.29.0
├── gitui v0.27.0
└── tui-textarea v0.7.0
└── gitui v0.27.0 (*)
```
In https://github.com/gitui-org/gitui/issues/2554 the decision was made
to ignore this advisory, as ratatui already has removed paste in
https://github.com/ratatui/ratatui/pull/1713 and we are just waiting for
an upstream release.
Co-authored-by: Naseschwarz <naseschwarz@0x53a.de>
2025-03-14 22:20:10 +01:00
dependabot[bot]
22aae374f1
Bump once_cell from 1.21.0 to 1.21.1 ( #2560 )
...
Bumps [once_cell](https://github.com/matklad/once_cell ) from 1.21.0 to 1.21.1.
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md )
- [Commits](https://github.com/matklad/once_cell/compare/v1.21.0...v1.21.1 )
---
updated-dependencies:
- dependency-name: once_cell
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-14 08:41:53 +01:00
dependabot[bot]
0b0d057af4
Bump once_cell from 1.20.3 to 1.21.0 ( #2557 )
...
Bumps [once_cell](https://github.com/matklad/once_cell ) from 1.20.3 to 1.21.0.
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md )
- [Commits](https://github.com/matklad/once_cell/compare/v1.20.3...v1.21.0 )
---
updated-dependencies:
- dependency-name: once_cell
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-11 09:19:19 +01:00
dependabot[bot]
5ad4cb0502
Bump clap from 4.5.31 to 4.5.32 ( #2558 )
...
Bumps [clap](https://github.com/clap-rs/clap ) from 4.5.31 to 4.5.32.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/v4.5.31...clap_complete-v4.5.32 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-11 09:18:57 +01:00
dependabot[bot]
e2558fd33b
Bump indexmap from 2.7.1 to 2.8.0 ( #2559 )
...
Bumps [indexmap](https://github.com/indexmap-rs/indexmap ) from 2.7.1 to 2.8.0.
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md )
- [Commits](https://github.com/indexmap-rs/indexmap/compare/2.7.1...2.8.0 )
---
updated-dependencies:
- dependency-name: indexmap
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-11 09:18:37 +01:00
dependabot[bot]
02d8c6bca4
Bump serde from 1.0.218 to 1.0.219 ( #2555 )
...
Bumps [serde](https://github.com/serde-rs/serde ) from 1.0.218 to 1.0.219.
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.218...v1.0.219 )
---
updated-dependencies:
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-10 09:54:52 +01:00
extrawurst
7756f0369a
fix link
2025-03-09 12:21:09 +01:00
extrawurst
c95cea96af
more docs on keycodes
2025-03-09 12:17:58 +01:00
dependabot[bot]
d7e9ffd4f9
Bump thiserror from 2.0.11 to 2.0.12 ( #2549 )
...
Bumps [thiserror](https://github.com/dtolnay/thiserror ) from 2.0.11 to 2.0.12.
- [Release notes](https://github.com/dtolnay/thiserror/releases )
- [Commits](https://github.com/dtolnay/thiserror/compare/2.0.11...2.0.12 )
---
updated-dependencies:
- dependency-name: thiserror
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-06 08:57:47 +01:00
dependabot[bot]
7cf7a9e408
Bump anyhow from 1.0.96 to 1.0.97 ( #2550 )
...
Bumps [anyhow](https://github.com/dtolnay/anyhow ) from 1.0.96 to 1.0.97.
- [Release notes](https://github.com/dtolnay/anyhow/releases )
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.96...1.0.97 )
---
updated-dependencies:
- dependency-name: anyhow
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-06 08:53:00 +01:00
dependabot[bot]
687d429c6f
Bump clap from 4.5.30 to 4.5.31 ( #2536 )
...
Bumps [clap](https://github.com/clap-rs/clap ) from 4.5.30 to 4.5.31.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.30...v4.5.31 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-26 10:45:15 +01:00
dependabot[bot]
4afcd66754
Bump bytesize from 1.3.2 to 2.0.0 ( #2535 )
...
Bumps [bytesize](https://github.com/bytesize-rs/bytesize ) from 1.3.2 to 2.0.0.
- [Release notes](https://github.com/bytesize-rs/bytesize/releases )
- [Changelog](https://github.com/bytesize-rs/bytesize/blob/master/CHANGELOG.md )
- [Commits](https://github.com/bytesize-rs/bytesize/commits )
---
updated-dependencies:
- dependency-name: bytesize
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-26 10:44:55 +01:00
dependabot[bot]
9fd82f0d43
Bump clap from 4.5.29 to 4.5.30 ( #2520 )
...
Bumps [clap](https://github.com/clap-rs/clap ) from 4.5.29 to 4.5.30.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.29...clap_complete-v4.5.30 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-24 11:39:19 +01:00
dependabot[bot]
7e46e353ae
Bump log from 0.4.25 to 0.4.26 ( #2533 )
...
Bumps [log](https://github.com/rust-lang/log ) from 0.4.25 to 0.4.26.
- [Release notes](https://github.com/rust-lang/log/releases )
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/log/compare/0.4.25...0.4.26 )
---
updated-dependencies:
- dependency-name: log
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-24 11:36:19 +01:00
extrawurst
6372f815e5
update license
2025-02-24 11:20:42 +01:00
Lena
7f30be88e3
Remove redundant to_str() conversion ( #2527 )
2025-02-21 09:04:27 +01:00
dependabot[bot]
e611e79274
Bump anyhow from 1.0.95 to 1.0.96 ( #2530 )
...
Bumps [anyhow](https://github.com/dtolnay/anyhow ) from 1.0.95 to 1.0.96.
- [Release notes](https://github.com/dtolnay/anyhow/releases )
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.95...1.0.96 )
---
updated-dependencies:
- dependency-name: anyhow
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-21 09:02:54 +01:00
dependabot[bot]
cb6441220c
Bump serde from 1.0.217 to 1.0.218 ( #2529 )
...
Bumps [serde](https://github.com/serde-rs/serde ) from 1.0.217 to 1.0.218.
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.217...v1.0.218 )
---
updated-dependencies:
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-21 09:02:44 +01:00
Lena
338dc2f4de
Improve syntax detection ( #2524 )
...
* Improve syntax detection
Currently, gitui prioritizes file extensions for syntax detection.
When a file lacks an extension (e.g. Makefile), or the extension
isn't tied to a specific format (e.g. .lock), it disables syntax
highlighting. Gitui will now try to detect the syntax from the entire
filename and the first line of the file using find_syntax_for_file().
---------
Co-authored-by: extrawurst <mail@rusticorn.com>
2025-02-19 14:13:47 +01:00
dependabot[bot]
cb4294a72b
Bump openssl-sys from 0.9.105 to 0.9.106 ( #2519 )
...
Bumps [openssl-sys](https://github.com/sfackler/rust-openssl ) from 0.9.105 to 0.9.106.
- [Release notes](https://github.com/sfackler/rust-openssl/releases )
- [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.105...openssl-sys-v0.9.106 )
---
updated-dependencies:
- dependency-name: openssl-sys
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-17 12:16:18 +01:00
dependabot[bot]
498be5fd1c
Bump clap from 4.5.28 to 4.5.29 ( #2516 )
...
Bumps [clap](https://github.com/clap-rs/clap ) from 4.5.28 to 4.5.29.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.28...clap_complete-v4.5.29 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-12 09:51:02 +01:00
dependabot[bot]
8ff4ee3ba9
Bump bytesize from 1.3.1 to 1.3.2 ( #2517 )
...
Bumps [bytesize](https://github.com/bytesize-rs/bytesize ) from 1.3.1 to 1.3.2.
- [Release notes](https://github.com/bytesize-rs/bytesize/releases )
- [Changelog](https://github.com/bytesize-rs/bytesize/blob/master/CHANGELOG.md )
- [Commits](https://github.com/bytesize-rs/bytesize/compare/v1.3.1...v1.3.2 )
---
updated-dependencies:
- dependency-name: bytesize
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-12 09:50:47 +01:00
dependabot[bot]
6ab6418974
Bump bytesize from 1.3.0 to 1.3.1 ( #2513 )
...
Bumps [bytesize](https://github.com/bytesize-rs/bytesize ) from 1.3.0 to 1.3.1.
- [Release notes](https://github.com/bytesize-rs/bytesize/releases )
- [Changelog](https://github.com/bytesize-rs/bytesize/blob/master/CHANGELOG.md )
- [Commits](https://github.com/bytesize-rs/bytesize/compare/v1.3.0...v1.3.1 )
---
updated-dependencies:
- dependency-name: bytesize
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-11 09:43:08 +01:00
Lena
491a95ba39
Update valid colors link in THEMES.md to ratatui ( #2511 )
2025-02-09 09:46:04 +01:00
dependabot[bot]
85d4399a17
Bump which from 7.0.1 to 7.0.2 ( #2508 )
...
Bumps [which](https://github.com/harryfei/which-rs ) from 7.0.1 to 7.0.2.
- [Release notes](https://github.com/harryfei/which-rs/releases )
- [Changelog](https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md )
- [Commits](https://github.com/harryfei/which-rs/compare/7.0.1...7.0.2 )
---
updated-dependencies:
- dependency-name: which
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-07 13:43:13 +01:00