gnu: Add rust-archery-1.

* gnu/packages/crates-io.scm (rust-archery-1): New variable.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Change-Id: Ie0b29e5c3163e0202327ce5661393ee1d3925d89
This commit is contained in:
Mathieu Othacehe 2023-12-24 21:36:50 +01:00
parent 8838aff2b0
commit 1db966e1bb
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -4096,6 +4096,32 @@ (define-public rust-arc-swap-0.4
("rust-proptest" ,rust-proptest-0.9)
("rust-version-sync" ,rust-version-sync-0.9))))))
(define-public rust-archery-1
(package
(name "rust-archery")
(version "1.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "archery" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1lp7lq613dd21ay15gzbl8s5r91c96iia000rs358xk217v5aya8"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-static-assertions" ,rust-static-assertions-1)
("rust-triomphe" ,rust-triomphe-0.1))
#:cargo-development-inputs
(("rust-compiletest-rs" ,rust-compiletest-rs-0.10)
("rust-criterion" ,rust-criterion-0.5)
("rust-pretty-assertions" ,rust-pretty-assertions-1))))
(home-page "https://github.com/orium/archery")
(synopsis "Abstract over the atomicity of reference-counting pointers")
(description "This package provides a way to abstract @code{Rc} and
@code{Arc} smart pointers. It can also create data structures where
the pointer type is parameterizable.")
(license license:mpl2.0)))
(define-public rust-arg-enum-proc-macro-0.3
(package
(name "rust-arg-enum-proc-macro")