-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create workspace with webpki-roots crate
- Loading branch information
Showing
12 changed files
with
54 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,2 @@ | ||
[package] | ||
name = "webpki-roots" | ||
version = "0.26.0" | ||
edition = "2018" | ||
readme = "README.md" | ||
license = "MPL-2.0" | ||
description = "Mozilla's CA root certificates for use with webpki" | ||
homepage = "https://github.com/rustls/webpki-roots" | ||
repository = "https://github.com/rustls/webpki-roots" | ||
|
||
[dependencies] | ||
pki-types = { package = "rustls-pki-types", version = "1", default-features = false } | ||
|
||
[dev-dependencies] | ||
chrono = { version = "0.4.26", default-features = false, features = ["clock"] } | ||
csv = "1.2.2" | ||
hex = "0.4.3" | ||
num-bigint = "0.4.3" | ||
percent-encoding = "2.3" | ||
rcgen = "0.11.1" | ||
reqwest = { version = "0.11", features = ["rustls-tls-manual-roots"] } | ||
ring = "0.17.0" | ||
rustls-pemfile = "2.0.0" | ||
rustls = "0.22" | ||
serde = { version = "1.0.183", features = ["derive"] } | ||
tokio = { version = "1", features = ["macros", "rt-multi-thread"] } | ||
webpki = { package = "rustls-webpki", version = "0.102", features = ["alloc"] } | ||
x509-parser = "0.15.1" | ||
yasna = "0.5.2" | ||
[workspace] | ||
members = ["webpki-roots"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,5 @@ | ||
# webpki-roots | ||
This is a crate containing Mozilla's root certificates for use with | ||
This workspace contains the crate webpki-roots. | ||
|
||
The webpki-roots crate contains Mozilla's root certificates for use with | ||
the [webpki](https://github.com/rustls/webpki) or | ||
[rustls](https://github.com/rustls/rustls) crates. | ||
|
||
This crate is inspired by [certifi.io](https://certifi.io/en/latest/) and | ||
uses the data provided by the [Common CA Database (CCADB)](https://www.ccadb.org/). | ||
|
||
[![webpki-roots](https://github.com/rustls/webpki-roots/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/rustls/webpki-roots/actions/workflows/build.yml) | ||
[![Crate](https://img.shields.io/crates/v/webpki-roots.svg)](https://crates.io/crates/webpki-roots) | ||
|
||
# License | ||
The underlying data is MPL-licensed, and `src/lib.rs` | ||
is therefore a derived work. | ||
|
||
# Regenerating sources | ||
Sources are generated in an integration test, in `tests/codegen.rs`. The test | ||
will fail if the sources are out of date relative to upstream, and update | ||
`src/lib.rs` if so. The code is generated in deterministic order so changes | ||
to the source should only result from upstream changes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[package] | ||
name = "webpki-roots" | ||
version = "0.26.0" | ||
edition = "2018" | ||
readme = "README.md" | ||
license = "MPL-2.0" | ||
homepage = "https://github.com/rustls/webpki-roots" | ||
repository = "https://github.com/rustls/webpki-roots" | ||
description = "Mozilla's CA root certificates for use with webpki" | ||
|
||
[dependencies] | ||
pki-types = { package = "rustls-pki-types", version = "1", default-features = false } | ||
|
||
[dev-dependencies] | ||
chrono = { version = "0.4.26", default-features = false, features = ["clock"] } | ||
csv = "1.2.2" | ||
hex = "0.4.3" | ||
num-bigint = "0.4.3" | ||
percent-encoding = "2.3" | ||
rcgen = "0.11.1" | ||
reqwest = { version = "0.11", features = ["rustls-tls-manual-roots"] } | ||
ring = "0.17.0" | ||
rustls-pemfile = "2.0.0" | ||
rustls = "0.22" | ||
serde = { version = "1.0.183", features = ["derive"] } | ||
tokio = { version = "1", features = ["macros", "rt-multi-thread"] } | ||
webpki = { package = "rustls-webpki", version = "0.102", features = ["alloc"] } | ||
x509-parser = "0.15.1" | ||
yasna = "0.5.2" |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# webpki-roots | ||
This is a crate containing Mozilla's root certificates for use with | ||
the [webpki](https://github.com/rustls/webpki) or | ||
[rustls](https://github.com/rustls/rustls) crates. | ||
|
||
This crate is inspired by [certifi.io](https://certifi.io/en/latest/) and | ||
uses the data provided by the [Common CA Database (CCADB)](https://www.ccadb.org/). | ||
|
||
[![webpki-roots](https://github.com/rustls/webpki-roots/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/rustls/webpki-roots/actions/workflows/build.yml) | ||
[![Crate](https://img.shields.io/crates/v/webpki-roots.svg)](https://crates.io/crates/webpki-roots) | ||
|
||
# License | ||
The underlying data is MPL-licensed, and `src/lib.rs` | ||
is therefore a derived work. | ||
|
||
# Regenerating sources | ||
Sources are generated in an integration test, in `tests/codegen.rs`. The test | ||
will fail if the sources are out of date relative to upstream, and update | ||
`src/lib.rs` if so. The code is generated in deterministic order so changes | ||
to the source should only result from upstream changes. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.