[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/37: gnu: Add rust-ron-0.7.
From: |
guix-commits |
Subject: |
11/37: gnu: Add rust-ron-0.7. |
Date: |
Thu, 9 Mar 2023 12:12:01 -0500 (EST) |
efraim pushed a commit to branch rust-team
in repository guix.
commit ff7faba9a1ada90fdfddc5aabe9600403dc771f2
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu Mar 9 16:36:59 2023 +0200
gnu: Add rust-ron-0.7.
* gnu/packages/crates-io.scm (rust-ron-0.7): New variable.
(rust-ron-0.6): Inherit from rust-ron-0.7.
---
gnu/packages/crates-io.scm | 35 +++++++++++++++++++++++++++++------
1 file changed, 29 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index b7d03c93a4..5a115e57bf 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -49172,8 +49172,36 @@ responses, and headers for the Rocket web framework.")
network services using futures.")
(license license:expat)))
+(define-public rust-ron-0.7
+ (package
+ (name "rust-ron")
+ (version "0.7.1")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "ron" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
"06iz51r6pyi197jjpfddq8h8884y85myaswfan07cnqylqwkj1w8"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:tests? #f ; Cannot find bitflags_serial.
+ #:cargo-inputs
+ (("rust-base64" ,rust-base64-0.13)
+ ("rust-bitflags" ,rust-bitflags-1)
+ ("rust-indexmap" ,rust-indexmap-1)
+ ("rust-serde" ,rust-serde-1))
+ #:cargo-development-inputs
+ (("rust-option-set" ,rust-option-set-0.1)
+ ("rust-serde-bytes" ,rust-serde-bytes-0.11)
+ ("rust-serde-json" ,rust-serde-json-1))))
+ (home-page "https://github.com/ron-rs/ron")
+ (synopsis "Rusty Object Notation")
+ (description "This package provides Rusty Object Notation (RON).")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-ron-0.6
(package
+ (inherit rust-ron-0.7)
(name "rust-ron")
(version "0.6.4")
(source
@@ -49183,18 +49211,13 @@ network services using futures.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "07vzhbrnimz1lij0f280y624j4yzipn2404jmygs24mp7xhshkh6"))))
- (build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-base64" ,rust-base64-0.13)
("rust-bitflags" ,rust-bitflags-1)
("rust-indexmap" ,rust-indexmap-1)
- ("rust-serde" ,rust-serde-1))))
- (home-page "https://github.com/ron-rs/ron")
- (synopsis "Rusty Object Notation")
- (description "This package provides Rusty Object Notation (RON).")
- (license (list license:expat license:asl2.0))))
+ ("rust-serde" ,rust-serde-1))))))
(define-public rust-ron-0.5
(package
- branch rust-team updated (b677e97c9d -> 8eacf9f168), guix-commits, 2023/03/09
- 01/37: gnu: rust-console-0.15: Update to 0.15.5., guix-commits, 2023/03/09
- 07/37: gnu: Add rust-jemallocator-0.5., guix-commits, 2023/03/09
- 11/37: gnu: Add rust-ron-0.7.,
guix-commits <=
- 06/37: gnu: Add rust-jemalloc-sys-0.5., guix-commits, 2023/03/09
- 14/37: gnu: Add rust-test-case-2., guix-commits, 2023/03/09
- 13/37: gnu: rust-similar-2: Update to 2.2.1., guix-commits, 2023/03/09
- 15/37: gnu: rust-ucd-trie-0.1: Update to 0.1.5., guix-commits, 2023/03/09
- 03/37: gnu: Add rust-crossterm-winapi-0.9., guix-commits, 2023/03/09
- 18/37: gnu: Add rust-option-set-0.1., guix-commits, 2023/03/09
- 20/37: gnu: Add rust-normpath-0.3., guix-commits, 2023/03/09
- 21/37: gnu: Add rust-faccess-0.2., guix-commits, 2023/03/09
- 22/37: gnu: Add rust-argmax-0.3., guix-commits, 2023/03/09
- 25/37: gnu: rust-tokio-1: Update to 1.26.0., guix-commits, 2023/03/09