Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webpki-roots-shim: document version #1565

Merged
merged 1 commit into from
May 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion sources/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ members = [
[profile.release]
debug = true

# This replaces webpki-roots with a shim that reads from the ca-certificates package
# This replaces webpki-roots with a shim that reads from the ca-certificates package. See
# webpki-roots-shim/Cargo.toml for more information about using the right version number.
[patch.crates-io.webpki-roots]
path = "webpki-roots-shim"
9 changes: 9 additions & 0 deletions sources/webpki-roots-shim/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
[package]
name = "webpki-roots"
# This version number is important because it determines whether or not our shim gets used by the
# patch statement in the sources workspace's Cargo.toml.
#
# At the time of this writing, reqwest is the only crate in sources/Cargo.lock that depends on
# webpki-roots. When reqwest is updated, the version here should be updated to exactly match the one
# that reqwest is using.
#
# You should also double-check sources/Cargo.lock to make sure there aren't two versions of
# webpki-roots being used (which would mean that one of them came from crates.io instead of here).
version = "0.21.1"
authors = ["iliana destroyer of worlds <iweller@amazon.com>"]
license = "Apache-2.0 OR MIT"
Expand Down