mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-04 18:38:57 -05:00
gnu: Add rust-numtoa-0.2.
* gnu/packages/crates-io.scm (rust-numtoa-0.2): New variable. (rust-numtoa-0.1): Inherit from rust-numtoa-0.2. Change-Id: Ibd01cd04daffaa3edbcb5a92dcbb198fe5750b5f
This commit is contained in:
parent
1504de9a83
commit
2dfbec808a
1 changed files with 33 additions and 7 deletions
|
@ -43866,8 +43866,40 @@ (define-public rust-number-prefix-0.3
|
|||
giga, kibi.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-numtoa-0.2
|
||||
(package
|
||||
(name "rust-numtoa")
|
||||
(version "0.2.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "numtoa" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "03yhkhjb3d1zx22m3pgcbpk8baj0zzvaxqc25c584sdq77jw98ka"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-test-flags
|
||||
'("--release" "--"
|
||||
"--skip=base10_i128_array_too_small"
|
||||
"--skip=base10_i16_array_too_small"
|
||||
"--skip=base10_i32_array_too_small"
|
||||
"--skip=base10_i64_array_too_small"
|
||||
"--skip=base10_i8_array_too_small"
|
||||
"--skip=base10_u128_array_too_small"
|
||||
"--skip=base10_u16_array_too_small"
|
||||
"--skip=base10_u32_array_too_small"
|
||||
"--skip=base10_u64_array_too_small"
|
||||
"--skip=base10_u8_array_too_small")))
|
||||
(home-page "https://gitlab.com/mmstick/numtoa")
|
||||
(synopsis "Convert numbers into stack-allocated byte arrays")
|
||||
(description
|
||||
"This package can convert numbers into stack-allocated byte arrays.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-numtoa-0.1
|
||||
(package
|
||||
(inherit rust-numtoa-0.2)
|
||||
(name "rust-numtoa")
|
||||
(version "0.1.0")
|
||||
(source
|
||||
|
@ -43878,13 +43910,7 @@ (define-public rust-numtoa-0.1
|
|||
(sha256
|
||||
(base32
|
||||
"1vs9rhggqbql1p26x8nkha1j06wawwgb2jp5fs88b5gi7prvvy5q"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments '(#:tests? #f))
|
||||
(home-page "https://gitlab.com/mmstick/numtoa")
|
||||
(synopsis "Convert numbers into stack-allocated byte arrays")
|
||||
(description
|
||||
"This package can convert numbers into stack-allocated byte arrays.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
(arguments '(#:tests? #f))))
|
||||
|
||||
(define-public rust-oauth2-types-0.7
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue