me
/
guix
Archived
1
0
Fork 0

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
Steve George 2023-10-30 21:06:23 +00:00 committed by Efraim Flashner
parent 57b26b089e
commit 022c9c6c75
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 9 additions and 8 deletions

View File

@ -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