gnu: Add rust-toml-datetime.

* gnu/packages/crates-io.scm (rust-toml-datetime-0.5): New variable.
This commit is contained in:
Marius Bakke 2022-12-04 00:15:18 +01:00 committed by Maxim Cournoyer
parent 08c6a8f953
commit 2278caa480
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -62272,6 +62272,27 @@ (define-public rust-toml-0.2
(license (list license:asl2.0
license:expat))))
(define-public rust-toml-datetime-0.5
(package
(name "rust-toml-datetime")
(version "0.5.0")
(source (origin
(method url-fetch)
(uri (crate-uri "toml_datetime" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1zcjvygkix0hm7nv7i6ag4fd0l1pglga1wyq2l8zgy0fgpjm32w0"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-serde" ,rust-serde-1))))
(home-page "https://github.com/toml-rs/toml")
(synopsis "TOML-compatible datetime type")
(description
"This package provides a TOML-compatible datetime type for Rust.")
;; The user can choose either license.
(license (list license:expat license:asl2.0))))
(define-public rust-toml-edit-0.14
(package
(name "rust-toml-edit")