mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-20 17:53:26 -05:00
gnu: Add rust-itoa-1.
* gnu/packages/crates-io.scm (rust-itoa-1): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
da3dd5afa5
commit
e580039cf8
1 changed files with 18 additions and 0 deletions
|
@ -27272,6 +27272,24 @@ (define-public rust-itertools-num-0.1
|
|||
and functions.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-itoa-1
|
||||
(package
|
||||
(name "rust-itoa")
|
||||
(version "1.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "itoa" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0d8wr2qf5b25a04xf10rz9r0pdbjdgb0zaw3xvf8k2sqcz1qzaqs"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://github.com/dtolnay/itoa")
|
||||
(synopsis "Fast functions for printing integer primitives")
|
||||
(description "This crate provides fast functions for printing integer
|
||||
primitives to an @code{io::Write}.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-itoa-0.4
|
||||
(package
|
||||
(name "rust-itoa")
|
||||
|
|
Loading…
Reference in a new issue