diff options
author | Steve George <steve@futurile.net> | 2023-10-30 21:06:23 +0000 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-11-28 07:59:30 +0200 |
commit | 022c9c6c7540f595cbdb3c091c8b1e5d2a2380a8 (patch) | |
tree | e9d59ef121b0f9812c121ef5aa39c58eb2ba9515 | |
parent | 57b26b089eb4a49539ef1e8ff9dbc4760efe63c0 (diff) | |
download | guix-022c9c6c7540f595cbdb3c091c8b1e5d2a2380a8.tar.gz guix-022c9c6c7540f595cbdb3c091c8b1e5d2a2380a8.zip |
gnu: rust-fern-0.6: Update to 0.6.2.
* gnu/packages/crates-io.scm (rust-fern-0.6): Update to 0.6.2.
[cargo-inputs]: Add rust-reopen-1, rust-syslog-6.
[cargo-development-inputs]: Add rust-humantime-2, rust-tempfile-3.
Remove rust-chrono-0.4, rust-tempdir-0.3.
Change-Id: I04ad247f6c1087265efb14d363a6bb35e09df883
-rw-r--r-- | gnu/packages/crates-io.scm | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index bc91dc94fe..e1c6b95691 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -26346,16 +26346,15 @@ Atom, RSS 2.0, RSS 1.0, RSS 0.x and JSON Feed") (define-public rust-fern-0.6 (package (name "rust-fern") - (version "0.6.0") + (version "0.6.2") (source (origin (method url-fetch) (uri (crate-uri "fern" version)) - (file-name - (string-append name "-" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0rghkbmpm7ckchd2fr2ifahprc7ll3qs0fbwsspsgj6cy0h4i6lc")))) + "1vpinainw32498p0zydmxc24yd3r6479pmhdfb429mfbji3c3w6r")))) (build-system cargo-build-system) (arguments `(#:cargo-inputs @@ -26364,12 +26363,14 @@ Atom, RSS 2.0, RSS 1.0, RSS 0.x and JSON Feed") ("rust-libc" ,rust-libc-0.2) ("rust-log" ,rust-log-0.4) ("rust-reopen" ,rust-reopen-0.3) + ("rust-reopen" ,rust-reopen-1) ("rust-syslog" ,rust-syslog-3) - ("rust-syslog" ,rust-syslog-4)) + ("rust-syslog" ,rust-syslog-4) + ("rust-syslog" ,rust-syslog-6)) #:cargo-development-inputs - (("rust-chrono" ,rust-chrono-0.4) - ("rust-clap" ,rust-clap-2) - ("rust-tempdir" ,rust-tempdir-0.3)))) + (("rust-clap" ,rust-clap-2) + ("rust-humantime" ,rust-humantime-2) + ("rust-tempfile" ,rust-tempfile-3)))) (home-page "https://github.com/daboross/fern") (synopsis "Simple, efficient logging") (description |