guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 7908876c0356c9b6fd06cd7c732e9711a93df201
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Sat May 31 16:44:49 2025 +0200

    gnu: Add [email protected].
    
    * gnu/packages/crates-io.scm (rust-serde-plain-1): New variable.
    
    Change-Id: Idfc6f90bf6fcda0023e4a695ff00a8bf673df89d
---
 gnu/packages/crates-io.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 74a2589d0a..e08ab179e6 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -98780,6 +98780,26 @@ in Pure Rust.")
         ("rust-quote" ,rust-quote-1)
         ("rust-syn" ,rust-syn-1))))))
 
+(define-public rust-serde-plain-1
+  (package
+    (name "rust-serde-plain")
+    (version "1.0.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "serde_plain" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0l4d4nbw00pz6n43icrc605bhgynfmlyq39sn8i10qasnrnzrqcw"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs (("rust-serde" ,rust-serde-1))))
+    (home-page "https://docs.rs/serde_plain";)
+    (synopsis "restricted plain text serializer for serde")
+    (description
+     "This package provides a restricted plain text serializer for serde.")
+    (license (list license:expat license:asl2.0))))
 ;;;
 ;;; Avoid adding new packages to the end of this file. To reduce the chances
 ;;; of a merge conflict, place them above by existing packages with similar

Reply via email to