diff options
author | Efraim Flashner <[email protected]> | 2024-12-25 12:24:08 +0200 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2025-01-06 12:19:02 +0200 |
commit | fc4703c82f9a10e1a8c4e42df33410cafa23c327 (patch) | |
tree | 426f00204cadeb225c65cdd262a11b14ff510350 | |
parent | 0bdf0d35778c7f3d14367f6388f4f6bf0d953e68 (diff) |
gnu: tealdeer: Update to 1.7.1.
* gnu/packages/rust-apps.scm (tealdeer): Update to 1.7.1.
[arguments]: Update the cargo-test-flags.
[cargo-inputs]: Replace rust-clap-3 with 4, rust-env-logger-0.9 with
0.11, rust-reqwest-0.11 with 0.12, rust-toml-0.5 with 0.8,
rust-yansi-0.5 with 1, rust-zip-0.6 with 2. Remove rust-atty-0.2.
[cargo-development-inputs]: Replace rust-predicates-2 with 3.
Change-Id: I1296065c370541db947b90ea61aa275f4a061d44
-rw-r--r-- | gnu/packages/rust-apps.scm | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 76ff4313e9..125672446f 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -3915,7 +3915,7 @@ window manager.") (define-public tealdeer (package (name "tealdeer") - (version "1.6.1") + (version "1.7.1") (source (origin ;; Completions aren't in the release tarball. @@ -3926,7 +3926,7 @@ window manager.") (file-name (git-file-name name version)) (sha256 (base32 - "0ipd23b30pqvyh20mxfd13ps0rnvg7zfpysv7wambfbb92xdh36d")))) + "1qwg2xifazg39qxra5r7ficvgcprianzi02frz853s7dly7q10si")))) (build-system cargo-build-system) (arguments `(#:phases @@ -3948,7 +3948,7 @@ window manager.") (string-append zsh "_tealdeer")))))) #:install-source? #f #:cargo-test-flags - '("--release" "--" + '("--" ;; These tests go to the network "--skip=test_quiet_old_cache" "--skip=test_quiet_cache" @@ -3962,23 +3962,22 @@ window manager.") #:cargo-inputs (("rust-anyhow" ,rust-anyhow-1) ("rust-app-dirs2" ,rust-app-dirs2-2) - ("rust-atty" ,rust-atty-0.2) - ("rust-clap" ,rust-clap-3) - ("rust-env-logger" ,rust-env-logger-0.9) + ("rust-clap" ,rust-clap-4) + ("rust-env-logger" ,rust-env-logger-0.11) ("rust-log" ,rust-log-0.4) ("rust-pager" ,rust-pager-0.16) - ("rust-reqwest" ,rust-reqwest-0.11) + ("rust-reqwest" ,rust-reqwest-0.12) ("rust-serde" ,rust-serde-1) ("rust-serde-derive" ,rust-serde-derive-1) - ("rust-toml" ,rust-toml-0.5) + ("rust-toml" ,rust-toml-0.8) ("rust-walkdir" ,rust-walkdir-2) - ("rust-yansi" ,rust-yansi-0.5) - ("rust-zip" ,rust-zip-0.6)) + ("rust-yansi" ,rust-yansi-1) + ("rust-zip" ,rust-zip-2)) #:cargo-development-inputs (("rust-assert-cmd" ,rust-assert-cmd-2) ("rust-escargot" ,rust-escargot-0.5) ("rust-filetime" ,rust-filetime-0.2) - ("rust-predicates" ,rust-predicates-2) + ("rust-predicates" ,rust-predicates-3) ("rust-tempfile" ,rust-tempfile-3)))) (native-inputs (list pkg-config)) |