[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#53315] [PATCH 099/150] gnu: Add rust-rustls-native-certs-0.6.
From: |
Aleksandr Vityazev |
Subject: |
[bug#53315] [PATCH 099/150] gnu: Add rust-rustls-native-certs-0.6. |
Date: |
Mon, 17 Jan 2022 13:30:28 +0000 |
* gnu/packages/crates-io.scm (rust-rustls-native-certs-0.6): New variable.
---
gnu/packages/crates-io.scm | 68 ++++++++++++++++++++++++++++++++++++++
1 file changed, 68 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f3a4491ce4..ae72818814 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -47570,6 +47570,42 @@ (define-public rust-rustls-0.12
("rust-serde-derive" ,rust-serde-derive-1)
("rust-webpki-roots" ,rust-webpki-roots-0.14))))))
+(define-public rust-rustls-native-certs-0.6
+ (package
+ (name "rust-rustls-native-certs")
+ (version "0.6.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "rustls-native-certs" version))
+ (file-name
+ (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0hq9h3kri19kv00gvbq61h21rarqadxh6y98wj0c2gvxlbgypaaw"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #t
+ #:cargo-inputs
+ (("rust-openssl-probe" ,rust-openssl-probe-0.1)
+ ("rust-rustls-pemfile" ,rust-rustls-pemfile-0.2)
+ ("rust-schannel" ,rust-schannel-0.1)
+ ("rust-security-framework" ,rust-security-framework-2))
+ #:cargo-development-inputs
+ (("rust-ring" ,rust-ring-0.16)
+ ("rust-rustls" ,rust-rustls-0.20)
+ ("rust-serial-test" ,rust-serial-test-0.5)
+ ("rust-untrusted" ,rust-untrusted-0.7)
+ ("rust-webpki" ,rust-webpki-0.22)
+ ("rust-webpki-roots" ,rust-webpki-roots-0.22)
+ ("rust-x509-parser" ,rust-x509-parser-0.12))))
+ (home-page "https://github.com/ctz/rustls-native-certs")
+ (synopsis "Use the platform native certificate store with rustls")
+ (description "@code{rustls-native-certs} allows rustls to use the platform
+native certificate store.")
+ (license
+ (list license:asl2.0 license:isc license:expat))))
+
(define-public rust-rustls-native-certs-0.5
(package
(name "rust-rustls-native-certs")
@@ -65879,6 +65915,38 @@ (define-public rust-x25519-dalek-1
exchange, with curve operations provided by @code{curve25519-dalek}.")
(license license:bsd-3)))
+(define-public rust-x509-parser-0.12
+ (package
+ (name "rust-x509-parser")
+ (version "0.12.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "x509-parser" version))
+ (file-name
+ (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1vanwazknxwd1kmlp443bpph9qyas021ayqk6iljxdscm0v0ijgz"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #t
+ #:cargo-inputs
+ (("rust-base64" ,rust-base64-0.13)
+ ("rust-chrono" ,rust-chrono-0.4)
+ ("rust-data-encoding" ,rust-data-encoding-2)
+ ("rust-der-parser" ,rust-der-parser-6)
+ ("rust-lazy-static" ,rust-lazy-static-1)
+ ("rust-nom" ,rust-nom-7)
+ ("rust-oid-registry" ,rust-oid-registry-0.2)
+ ("rust-ring" ,rust-ring-0.16)
+ ("rust-rusticata-macros" ,rust-rusticata-macros-4)
+ ("rust-thiserror" ,rust-thiserror-1))))
+ (home-page "https://github.com/rusticata/x509-parser")
+ (synopsis "X.509 parser written in pure Rust")
+ (description "Parser for the X.509 v3 format (RFC 5280 certificates).")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-x86-0.33
(package
(name "rust-x86")
--
2.34.0
--
Aleksandr Vityazev
- [bug#53315] [PATCH 086/150] gnu: Add rust-radium-0.6., (continued)
- [bug#53315] [PATCH 086/150] gnu: Add rust-radium-0.6., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 085/150] gnu: rust-rustls-0.19: Inherit from rust-rustls-0.20., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 090/150] gnu: Add rust-funty-1.2., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 093/150] gnu: rust-bitvec-0.19: Inherit from rust-bitvec-0.22., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 092/150] gnu: Add rust-bitvec-0.22., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 094/150] gnu: Add rust-der-oid-macro-0.5., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 091/150] gnu: rust-funty-1: Inherit from rust-funty-1.2., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 095/150] gnu: Add rust-rusticata-macros-4., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 098/150] gnu: Add rust-oid-registry-0.2., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 101/150] gnu: rust-brotli-decompressor-2: Update to 2.3.2., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 099/150] gnu: Add rust-rustls-native-certs-0.6.,
Aleksandr Vityazev <=
- [bug#53315] [PATCH 100/150] gnu: rust-rustls-native-certs-0.5: Inherit from rust-rustls-native-certs-0.6., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 096/150] gnu: rust-rusticata-macros-3: Inherit from rust-rusticata-macros-4., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 102/150] gnu: rust-cc-1: Update to 1.0.67., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 097/150] gnu: Add rust-der-parser-6., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 103/150] gnu: Add rust-cloudflare-zlib-sys-0.3., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 104/150] gnu: rust-cloudflare-zlib-sys-0.2: Inherit from rust-cloudflare-zlib-sys-0.3., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 106/150] gnu: Add rust-ureq-2., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 107/150] gnu: Add rust-stats-alloc-0.1., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 105/150] gnu: rust-flate2-1: Update to 1.0.22., Aleksandr Vityazev, 2022/01/17
- [bug#53315] [PATCH 108/150] gnu: Add rust-lru-0.7., Aleksandr Vityazev, 2022/01/17