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:
parent
5844ac8083
commit
05693172dc
1 changed files with 35 additions and 11 deletions
|
@ -65982,8 +65982,42 @@ stream-based WebSocket implementation.")
|
||||||
("rust-tokio" ,rust-tokio-0.2)
|
("rust-tokio" ,rust-tokio-0.2)
|
||||||
("rust-tokio-test" ,rust-tokio-test-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
|
(define-public rust-toml-0.6
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-toml-0.7)
|
||||||
(name "rust-toml")
|
(name "rust-toml")
|
||||||
(version "0.6.0")
|
(version "0.6.0")
|
||||||
(source
|
(source
|
||||||
|
@ -65993,7 +66027,6 @@ stream-based WebSocket implementation.")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "05zjz69wjymp9yrgccg5vhvxpf855rgn23vl1yvri4nwwj8difag"))))
|
(base32 "05zjz69wjymp9yrgccg5vhvxpf855rgn23vl1yvri4nwwj8difag"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-indexmap" ,rust-indexmap-1)
|
(("rust-indexmap" ,rust-indexmap-1)
|
||||||
|
@ -66005,16 +66038,7 @@ stream-based WebSocket implementation.")
|
||||||
(("rust-serde" ,rust-serde-1)
|
(("rust-serde" ,rust-serde-1)
|
||||||
("rust-serde-json" ,rust-serde-json-1)
|
("rust-serde-json" ,rust-serde-json-1)
|
||||||
("rust-snapbox" ,rust-snapbox-0.4)
|
("rust-snapbox" ,rust-snapbox-0.4)
|
||||||
("rust-toml-test-harness" ,rust-toml-test-harness-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))))
|
|
||||||
|
|
||||||
(define-public rust-toml-0.5
|
(define-public rust-toml-0.5
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue