Files
termux-packages/packages/fish/Cargo.toml.patch
termux-pacman-bot 0565205eba bump(main/fish): 4.1.0
- Fixes https://github.com/termux/termux-packages/issues/26707

- Revert 70bd49f612 as planned and previously noted in https://github.com/termux/termux-packages/pull/26466

- After eb4cec1fe2, `fix-import-when-posix-spawn-disabled.patch` is necessary to prevent compilation error `failed to resolve: use of undeclared type 'Pid'`

- After 91ee45b0e1, `revert-6644cc9.patch` is no longer necessary to prevent a compilation failure, and can be removed.

- https://github.com/termux/termux-app/pull/4417 has been in [Termux 0.118.3](https://github.com/termux/termux-app/releases/tag/v0.118.3) for 4 months, meaning that `status test-feature keyboard-protocols && set -U fish_features no-keyboard-protocols` can be removed.
2025-10-14 16:41:21 +00:00

12 lines
582 B
Diff

--- a/Cargo.toml
+++ b/Cargo.toml
@@ -18,7 +18,7 @@ fish-gettext-extraction = { path = "crates/gettext-extraction" }
fish-gettext-maps = { path = "crates/gettext-maps" }
fish-gettext-mo-file-parser = { path = "crates/gettext-mo-file-parser" }
fish-printf = { path = "crates/printf", features = ["widestring"] }
-libc = "0.2.155"
+libc = "0.2.170"
# lru pulls in hashbrown by default, which uses a faster (though less DoS resistant) hashing algo.
# disabling default features uses the stdlib instead, but it doubles the time to rewrite the history
# files as of 22 April 2024.