gnu: Add rust-state-0.6.

* gnu/packages/crates-io.scm (rust-state-0.6): New variable.
(rust-state-0.5): Inherit from rust-state-0.6.

Change-Id: I1fc9c235c85eb1956af5aec9054ba5c196cbe0e8
This commit is contained in:
Efraim Flashner 2024-03-18 11:36:00 +02:00
parent dac6a8d896
commit a335e9dead
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -68978,8 +68978,32 @@ (define-public rust-standback-0.2
(description "New standard library, old compiler.")
(license (list license:expat license:asl2.0))))
(define-public rust-state-0.6
(package
(name "rust-state")
(version "0.6.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "state" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1n3n2h324h1y5zhaajh6kplvzfvg1l6hsr8siggmf4yq8m24m31b"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-loom" ,rust-loom-0.5))
#:cargo-development-inputs
(("rust-static-assertions" ,rust-static-assertions-1))))
(home-page "https://github.com/SergioBenitez/state")
(synopsis "Library for safe global and thread-local state management")
(description
"This package provides a library for safe global and thread-local state
management.")
(license (list license:expat license:asl2.0))))
(define-public rust-state-0.5
(package
(inherit rust-state-0.6)
(name "rust-state")
(version "0.5.3")
(source (origin
@ -68989,18 +69013,11 @@ (define-public rust-state-0.5
(sha256
(base32
"0fzji31ijbkimbzdy4dln9mp5xp7lm1a0dnqxv4n10hywphnds6v"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-loom" ,rust-loom-0.5))
#:cargo-development-inputs
(("rust-static-assertions" ,rust-static-assertions-1))))
(home-page "https://github.com/SergioBenitez/state")
(synopsis "Library for safe global and thread-local state management")
(description
"This package provides a library for safe global and thread-local state
management.")
(license (list license:expat license:asl2.0))))
(("rust-static-assertions" ,rust-static-assertions-1))))))
(define-public rust-state-0.4
(package