Bump rustls-connector from 0.19 to 0.22 (#314)
Some checks failed
check / stable / fmt (push) Has been cancelled
check / beta / clippy (push) Has been cancelled
check / stable / clippy (push) Has been cancelled
check / semver (push) Has been cancelled
check / nightly / doc (push) Has been cancelled
check / ubuntu / stable / features (push) Has been cancelled
check / ubuntu / 1.80.0 (push) Has been cancelled
rolling / ubuntu / nightly (push) Has been cancelled
rolling / ubuntu / beta / updated (push) Has been cancelled
test / ubuntu / beta / greenmail (push) Has been cancelled
test / ubuntu / stable / greenmail (push) Has been cancelled
test / ubuntu / beta / cyrus (push) Has been cancelled
test / ubuntu / stable / cyrus (push) Has been cancelled
test / ubuntu / stable / minimal-versions (push) Has been cancelled
test / macos-latest / stable (push) Has been cancelled
test / windows-latest / stable (push) Has been cancelled
test / ubuntu / stable / coverage (push) Has been cancelled
Some checks failed
check / stable / fmt (push) Has been cancelled
check / beta / clippy (push) Has been cancelled
check / stable / clippy (push) Has been cancelled
check / semver (push) Has been cancelled
check / nightly / doc (push) Has been cancelled
check / ubuntu / stable / features (push) Has been cancelled
check / ubuntu / 1.80.0 (push) Has been cancelled
rolling / ubuntu / nightly (push) Has been cancelled
rolling / ubuntu / beta / updated (push) Has been cancelled
test / ubuntu / beta / greenmail (push) Has been cancelled
test / ubuntu / stable / greenmail (push) Has been cancelled
test / ubuntu / beta / cyrus (push) Has been cancelled
test / ubuntu / stable / cyrus (push) Has been cancelled
test / ubuntu / stable / minimal-versions (push) Has been cancelled
test / macos-latest / stable (push) Has been cancelled
test / windows-latest / stable (push) Has been cancelled
test / ubuntu / stable / coverage (push) Has been cancelled
This commit is contained in:
parent
5900f5e6a2
commit
f7274363cb
4 changed files with 725 additions and 395 deletions
2
.github/workflows/check.yml
vendored
2
.github/workflows/check.yml
vendored
|
|
@ -112,7 +112,7 @@ jobs:
|
||||||
# https://docs.github.com/en/actions/learn-github-actions/contexts#context-availability
|
# https://docs.github.com/en/actions/learn-github-actions/contexts#context-availability
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
msrv: ["1.65.0"]
|
msrv: ["1.80.0"]
|
||||||
name: ubuntu / ${{ matrix.msrv }}
|
name: ubuntu / ${{ matrix.msrv }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
|
||||||
1110
Cargo.lock
generated
1110
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -23,7 +23,7 @@ test-full-imap = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
native-tls = { version = "0.2.2", optional = true }
|
native-tls = { version = "0.2.2", optional = true }
|
||||||
rustls-connector = { version = "0.19.0", optional = true }
|
rustls-connector = { version = "0.22.0", optional = true }
|
||||||
regex = "1.0"
|
regex = "1.0"
|
||||||
bufstream = "0.1.3"
|
bufstream = "0.1.3"
|
||||||
imap-proto = "0.16.1"
|
imap-proto = "0.16.1"
|
||||||
|
|
@ -35,7 +35,7 @@ ouroboros = "0.18.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
lettre = "0.11"
|
lettre = "0.11"
|
||||||
rustls-connector = "0.19.0"
|
rustls-connector = "0.22.0"
|
||||||
clap = { version = "4.5.4", features = ["derive"] }
|
clap = { version = "4.5.4", features = ["derive"] }
|
||||||
|
|
||||||
# to make -Zminimal-versions work
|
# to make -Zminimal-versions work
|
||||||
|
|
|
||||||
|
|
@ -64,8 +64,8 @@ impl rustls::client::danger::ServerCertVerifier for NoCertVerification {
|
||||||
lazy_static! {
|
lazy_static! {
|
||||||
static ref CACERTS: RootCertStore = {
|
static ref CACERTS: RootCertStore = {
|
||||||
let mut store = RootCertStore::empty();
|
let mut store = RootCertStore::empty();
|
||||||
for cert in load_native_certs().unwrap_or_else(|_| vec![]) {
|
for cert in load_native_certs().certs {
|
||||||
if let Ok(_) = store.add(cert) {}
|
let _ = store.add(cert);
|
||||||
}
|
}
|
||||||
store
|
store
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue