mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 19:35:25 -05:00
gnu: Add rust-kstring-2.
* gnu/packages/crates-io.scm (rust-kstring-2): New variable.
This commit is contained in:
parent
54e48e37d3
commit
6a246e151b
1 changed files with 26 additions and 0 deletions
|
@ -30501,6 +30501,32 @@ (define-public rust-kqueue-1
|
||||||
(description "This package provides a kqueue interface for BSDs.")
|
(description "This package provides a kqueue interface for BSDs.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-kstring-2
|
||||||
|
(package
|
||||||
|
(name "rust-kstring")
|
||||||
|
(version "2.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "kstring" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0isp7kmk4q0qxpcd877q77ykgb3ryfbmj18djmnwv8c210sncc7c"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t ; Uses unstable features.
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-document-features" ,rust-document-features-0.2)
|
||||||
|
("rust-serde" ,rust-serde-1)
|
||||||
|
("rust-static-assertions" ,rust-static-assertions-1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-criterion" ,rust-criterion-0.3)
|
||||||
|
("rust-proptest" ,rust-proptest-1))))
|
||||||
|
(home-page "https://github.com/cobalt-org/kstring")
|
||||||
|
(synopsis "String optimized for map keys")
|
||||||
|
(description "Key String provides a Rust package optimized for map keys.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-kstring-1
|
(define-public rust-kstring-1
|
||||||
(package
|
(package
|
||||||
(name "rust-kstring")
|
(name "rust-kstring")
|
||||||
|
|
Loading…
Reference in a new issue