efraim pushed a commit to branch rust-team
in repository guix.
commit 6a9f2f11d59f1e6bdced2dab5672a3bdd2d1a464
Author: Efraim Flashner <[email protected]>
AuthorDate: Fri Dec 27 13:31:28 2024 +0200
gnu: Add rust-toml-span-0.3.
* gnu/packages/crates-io.scm (rust-toml-span-0.3): New variable.
Change-Id: Ia5e72527056c692aecfc8cdb9e89db8752d3ae93
---
gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 7faca8a6f3..3d248cb66d 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -87233,6 +87233,29 @@ parser.")
("rust-pretty-assertions" ,rust-pretty-assertions-1)
("rust-snapbox" ,rust-snapbox-0.2))))))
+(define-public rust-toml-span-0.3
+ (package
+ (name "rust-toml-span")
+ (version "0.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "toml-span" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "01n13cw88rrph0n01hab9v4wzbxplf0w0xw038yz76rvkvj1n3nf"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-codespan-reporting"
,rust-codespan-reporting-0.11)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-smallvec" ,rust-smallvec-1))))
+ (home-page "https://github.com/EmbarkStudios/toml-span")
+ (synopsis "Toml parser and deserializer that preserves span information")
+ (description
+ "This package provides a toml parser and deserializer that preserves
+span information.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-toml-test-1
(package
(name "rust-toml-test")