gnu: Add rust-toml-0.7.

* gnu/packages/crates-io.scm (rust-toml-0.7): New variable.
(rust-toml-0.6): Inherit from rust-toml-0.7.
This commit is contained in:
Efraim Flashner 2023-04-24 16:21:49 +03:00
parent 5844ac8083
commit 05693172dc
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -65982,8 +65982,42 @@ (define-public rust-tokio-util-0.2
("rust-tokio" ,rust-tokio-0.2)
("rust-tokio-test" ,rust-tokio-test-0.2))))))
(define-public rust-toml-0.7
(package
(name "rust-toml")
(version "0.7.3")
(source (origin
(method url-fetch)
(uri (crate-uri "toml" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"08cvcr3w0kgnz8i963qhab2plnm7niy9c3bz7k4mj25vybvaq0xl"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-indexmap" ,rust-indexmap-1)
("rust-serde" ,rust-serde-1)
("rust-serde-spanned" ,rust-serde-spanned-0.6)
("rust-toml-datetime" ,rust-toml-datetime-0.6)
("rust-toml-edit" ,rust-toml-edit-0.19))
#:cargo-development-inputs
(("rust-serde" ,rust-serde-1)
("rust-serde-json" ,rust-serde-json-1)
("rust-snapbox" ,rust-snapbox-0.4)
("rust-toml-test-harness" ,rust-toml-test-harness-0.4))))
(home-page "https://github.com/toml-rs/toml")
(synopsis "Rust encoder and decoder of TOML-formatted files and streams")
(description
"This package provides a native Rust encoder and decoder of TOML-formatted
files and streams. Provides implementations of the standard
Serialize/Deserialize traits for TOML data to facilitate deserializing and
serializing Rust structures.")
(license (list license:expat license:asl2.0))))
(define-public rust-toml-0.6
(package
(inherit rust-toml-0.7)
(name "rust-toml")
(version "0.6.0")
(source
@ -65993,7 +66027,6 @@ (define-public rust-toml-0.6
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "05zjz69wjymp9yrgccg5vhvxpf855rgn23vl1yvri4nwwj8difag"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-indexmap" ,rust-indexmap-1)
@ -66005,16 +66038,7 @@ (define-public rust-toml-0.6
(("rust-serde" ,rust-serde-1)
("rust-serde-json" ,rust-serde-json-1)
("rust-snapbox" ,rust-snapbox-0.4)
("rust-toml-test-harness" ,rust-toml-test-harness-0.4))))
(home-page "https://github.com/alexcrichton/toml-rs")
(synopsis "Rust encoder and decoder of TOML-formatted files and streams")
(description
"This package provides a native Rust encoder and decoder of TOML-formatted
files and streams. Provides implementations of the standard
Serialize/Deserialize traits for TOML data to facilitate deserializing and
serializing Rust structures.")
(license (list license:asl2.0
license:expat))))
("rust-toml-test-harness" ,rust-toml-test-harness-0.4))))))
(define-public rust-toml-0.5
(package