me
/
guix
Archived
1
0
Fork 0

gnu: rust-tracing-core-0.1: Update to 0.1.29.

* gnu/packages/crates-io.scm (rust-tracing-core-0.1): Update to 0.1.29.
[arguments]: Remove rust-lazy-static; add rust-once-cell and rust-valuable.
master
Ricardo Wurmus 2022-09-01 18:57:35 +02:00
parent 9f4acd606a
commit 86f37ac367
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 5 additions and 3 deletions

View File

@ -67012,18 +67012,20 @@ automatically instrumenting functions.")
(define-public rust-tracing-core-0.1
(package
(name "rust-tracing-core")
(version "0.1.21")
(version "0.1.29")
(source
(origin
(method url-fetch)
(uri (crate-uri "tracing-core" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1r262wskhm6wmc5i2bxz44nglyzqaq3x50s0h5q0ffdq6xbdckhz"))))
(base32
"1xr2dqar64fj4y43vy0xvaxs6n3xssd3z0jbf408lmbn60qa9vjs"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-lazy-static" ,rust-lazy-static-1))))
(("rust-once-cell" ,rust-once-cell-1)
("rust-valuable" ,rust-valuable-0.1))))
(home-page "https://tokio.rs")
(synopsis "Core primitives for application-level tracing")
(description