diff options
author | Efraim Flashner <[email protected]> | 2024-12-25 14:04:29 +0200 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2025-01-06 12:19:06 +0200 |
commit | 312c7d4b7bb084a54a6d39273c1e1da37dc9971e (patch) | |
tree | 6cdd5ee00ed62d246f49131faa1e78746c962730 /gnu/packages/rust-apps.scm | |
parent | 19498ec88f5031a7515132f7a5de76346c298f66 (diff) |
gnu: zoxide: Update to 0.9.6.
* gnu/packages/rust-apps.scm (zoxide): Update to 0.9.6.
[cargo-inputs]: Add rust-rinja-0.3. Replace rust-nix-0.26 with 0.27,
rust-ouroboros-0.17 with 0.18, rust-which-4 with 6. Remove
rust-askama-0.12.
Change-Id: I782d74391d015673b6ca808757da65544e6eb091
Diffstat (limited to 'gnu/packages/rust-apps.scm')
-rw-r--r-- | gnu/packages/rust-apps.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 6baf21c6ba..a7b110a7c4 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -4340,20 +4340,19 @@ advanced keybindings, word-level diff highlighting, syntax highlighting for (define-public zoxide (package (name "zoxide") - (version "0.9.2") + (version "0.9.6") (source (origin (method url-fetch) (uri (crate-uri "zoxide" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1dqndbxpnv0g82d52jaszsgh62y9cv9hq8rgypsimgkk9yxhn4rw")))) + (base32 "0r8rhz01s3ar5i2pkmplp36rhspsk65jyp4sq7vav1dr4vx9fs4a")))) (build-system cargo-build-system) (arguments (list #:install-source? #f #:cargo-inputs `(("rust-anyhow" ,rust-anyhow-1) - ("rust-askama" ,rust-askama-0.12) ("rust-bincode" ,rust-bincode-1) ("rust-clap" ,rust-clap-4) ("rust-clap-complete" ,rust-clap-complete-4) @@ -4363,10 +4362,11 @@ advanced keybindings, word-level diff highlighting, syntax highlighting for ("rust-dunce" ,rust-dunce-1) ("rust-fastrand" ,rust-fastrand-2) ("rust-glob" ,rust-glob-0.3) - ("rust-nix" ,rust-nix-0.26) - ("rust-ouroboros" ,rust-ouroboros-0.17) + ("rust-nix" ,rust-nix-0.27) + ("rust-ouroboros" ,rust-ouroboros-0.18) + ("rust-rinja" ,rust-rinja-0.3) ("rust-serde" ,rust-serde-1) - ("rust-which" ,rust-which-4)) + ("rust-which" ,rust-which-6)) #:cargo-development-inputs `(("rust-assert-cmd" ,rust-assert-cmd-2) ("rust-rstest" ,rust-rstest-0.18) |