efraim pushed a commit to branch rust-team
in repository guix.
commit a4e4f38b5268dda4cc0d13c92b277e7d6ef8983e
Author: Efraim Flashner <[email protected]>
AuthorDate: Thu Jan 18 18:58:02 2024 +0200
gnu: Add rust-serde-json-core-0.4.
* gnu/packages/crates-io.scm (rust-serde-json-core-0.4): New variable.
Change-Id: I00d2d6e0995ff1559bbd6e29ac18e97274cfbda1
---
gnu/packages/crates-io.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 7d8baeddf1..c03ceec0e8 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -65078,6 +65078,24 @@ data. This crate provides a wrapper that works with
any existing Serde
programs in rust.")
(license (list license:expat license:asl2.0))))
+(define-public rust-serde-json-core-0.4
+ (package
+ (inherit rust-serde-json-core-0.5)
+ (name "rust-serde-json-core")
+ (version "0.4.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "serde-json-core" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "10a7k6ly9ly4xkk30nqq2js7acrg7wjl73bpg43hzjib4zmaw540"))))
+ (arguments
+ `(#:cargo-inputs (("rust-heapless" ,rust-heapless-0.7)
+ ("rust-ryu" ,rust-ryu-1)
+ ("rust-serde" ,rust-serde-1))
+ #:cargo-development-inputs (("rust-serde-derive"
,rust-serde-derive-1))))))
+
(define-public rust-serde-path-to-error-0.1
(package
(name "rust-serde-path-to-error")