mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-20 05:37:34 -05:00
gnu: Add rust-simdutf8-0.1.
* gnu/packages/crates-io.scm (rust-simdutf8-0.1): New variable.
This commit is contained in:
parent
08dfad9918
commit
ed18419fe8
1 changed files with 20 additions and 0 deletions
|
@ -43124,6 +43124,26 @@ (define-public rust-simd-helpers-0.1
|
|||
"This package provides helpers to write more compact simd code.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-simdutf8-0.1
|
||||
(package
|
||||
(name "rust-simdutf8")
|
||||
(version "0.1.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "simdutf8" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0nama0xqzbl8x72fqd8nhgvwjhg2vqj0gkv1la8gm0n6wwbdlw69"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments `(#:skip-build? #t))
|
||||
(home-page "https://github.com/rusticstuff/simdutf8")
|
||||
(synopsis "SIMD-accelerated UTF-8 validation")
|
||||
(description
|
||||
"simdutf8 is a fast API-compatible UTF-8 validation for Rust using SIMD
|
||||
extensions.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-similar-1
|
||||
(package
|
||||
(name "rust-similar")
|
||||
|
|
Loading…
Reference in a new issue