me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-st-map-0.1.

* gnu/packages/crates-io.scm (rust-st-map-0.1): New variable.
master
Arun Isaac 2020-09-21 11:38:29 +05:30
parent 40b2e9052c
commit 1757c5e912
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
1 changed files with 22 additions and 0 deletions

View File

@ -25765,6 +25765,28 @@ initializers are available.")
"This package provides a single-producer single-consumer lock-free buffer.")
(license license:expat)))
(define-public rust-st-map-0.1
(package
(name "rust-st-map")
(version "0.1.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "st-map" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1l820pisfi134v3wy0na480wl7rf69kgxzvmgc560ngqb0xb3biw"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-arrayvec" ,rust-arrayvec-0.5)
("rust-static-map-macro" ,rust-static-map-macro-0.2))))
(home-page "https://github.com/kdy1/rust-static-map")
(synopsis "Runtime for a stack-alocated map")
(description "This package provides a runtime for a stack-alocated map.")
(license license:expat)))
(define-public rust-stable-deref-trait-1
(package
(name "rust-stable-deref-trait")