diff options
author | Efraim Flashner <[email protected]> | 2024-11-21 15:04:35 +0200 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2024-11-28 11:05:38 +0200 |
commit | e17242bb9125b736e601a06c02ee3ba06bc7483b (patch) | |
tree | 867c8638e25c1c990beb290d495ad4645ac046cf | |
parent | ffdf0d180b68972fb7e6ee5a2cbbc6c21322dafb (diff) |
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
-rw-r--r-- | gnu/packages/crates-io.scm | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index e4e72d0c6e..dbf247e257 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -12234,17 +12234,17 @@ supported by Cargo.") "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 @@ supported by Cargo.") 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) |