mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: Add rust-cargo-toml-0.20.
* gnu/packages/crates-io.scm (rust-cargo-toml-0.20): New variable. (rust-cargo-toml-0.19): Inherit from rust-cargo-toml-0.20. Change-Id: I65ac70f717502455fcf00eed97b920352fe159c8
This commit is contained in:
parent
ffdf0d180b
commit
e17242bb91
1 changed files with 19 additions and 3 deletions
|
@ -12234,17 +12234,17 @@ (define-public rust-cargo-test-support-0.4
|
|||
"This package provides a testing framework for Cargo's testsuite.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-cargo-toml-0.19
|
||||
(define-public rust-cargo-toml-0.20
|
||||
(package
|
||||
(name "rust-cargo-toml")
|
||||
(version "0.19.2")
|
||||
(version "0.20.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "cargo_toml" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1gljfkdjx07fisn5xkklv56ki3p49ppf8fkry7c1psx28bgmd0x9"))))
|
||||
(base32 "1h0srl8n4s0xs6bq9z9zpkni3brzkkm0fmw4g00cmd10qq9mmnl8"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-serde" ,rust-serde-1)
|
||||
|
@ -12255,6 +12255,22 @@ (define-public rust-cargo-toml-0.19
|
|||
parsing with Serde.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-cargo-toml-0.19
|
||||
(package
|
||||
(inherit rust-cargo-toml-0.20)
|
||||
(name "rust-cargo-toml")
|
||||
(version "0.19.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "cargo_toml" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1gljfkdjx07fisn5xkklv56ki3p49ppf8fkry7c1psx28bgmd0x9"))))
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-serde" ,rust-serde-1)
|
||||
("rust-toml" ,rust-toml-0.8))))))
|
||||
|
||||
(define-public rust-cargo-toml-0.16
|
||||
(package
|
||||
(inherit rust-cargo-toml-0.19)
|
||||
|
|
Loading…
Reference in a new issue