1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add rust-zero@0.1.3.

* gnu/packages/crates-io.scm (rust-zero-0.1): New variable.

Change-Id: Ia1d71ebd416b9fcbff773c9ffa07ac4a2262b05d
This commit is contained in:
Danny Milosavljevic 2025-05-31 16:44:23 +02:00
parent 801964e02d
commit 1ea4e8744d
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -98046,6 +98046,27 @@ language.")
"This package provides API to handle D-Bus introspection XML.")
(license license:expat)))
(define-public rust-zero-0.1
(package
(name "rust-zero")
(version "0.1.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "zero" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "113pa9jj40x6bvxsw582ca9np7d53qkb2b6cavfyczya6k61pqig"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t))
(home-page "https://github.com/nrc/zero")
(synopsis "Rust library for zero-allocation parsing of binary data")
(description
"This package provides a Rust library for zero-allocation parsing of binary data.")
;; User can use package under either license.
(license (list license:asl2.0 license:expat))))
(define-public rust-zerocopy-0.8
(package
(name "rust-zerocopy")