gnu: Add rust-untrusted.

* gnu/packages/crates-io.scm (rust-untrusted): New variable.
master
Efraim Flashner 2019-08-28 16:47:54 +03:00
parent 2f19d32979
commit 6da1f9c6de
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 20 additions and 0 deletions

View File

@ -1832,6 +1832,26 @@ whitespace from a string.")
(license (list license:asl2.0
license:expat))))
(define-public rust-untrusted
(package
(name "rust-untrusted")
(version "0.7.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "untrusted" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1kmfykcwif6ashkwg54gcnhxj03kpba2i9vc7z5rpr0xlgvrwdk0"))))
(build-system cargo-build-system)
(home-page "https://github.com/briansmith/untrusted")
(synopsis "Zero-allocation parsing of untrusted inputs in Rust")
(description
"Safe, fast, zero-panic, zero-crashing, zero-allocation parsing of
untrusted inputs in Rust.")
(license license:isc)))
(define-public rust-wasi
(package
(name "rust-wasi")