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

chore: Bump once_cell from 1.19.0 to 1.20.2 #1532

Closed
wants to merge 1 commit into from
Closed
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
chore: Bump once_cell from 1.19.0 to 1.20.2
Bumps [once_cell](https://github.com/matklad/once_cell) from 1.19.0 to 1.20.2.
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.19.0...v1.20.2)

---
updated-dependencies:
- dependency-name: once_cell
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] authored Nov 11, 2024
commit aa393ed8373c2960b9ee492103c5dd1eab79dabe
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ path = "src/main.rs"
check-if-email-exists = { path = "../core" }
clap = { version = "3.2", features = ["derive", "env"] }
env_logger = "0.11"
once_cell = "1.19"
once_cell = "1.20"
openssl = { version = "0.10", features = ["vendored"] }
serde = "1.0"
serde_json = "1.0"
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ levenshtein = "1.0.5"
log = "0.4.22"
mailchecker = "6.0.11"
md5 = "0.7.0"
once_cell = "1.19.0"
once_cell = "1.20.2"
pwned = "0.5.0"
rand = { version = "0.8.5", features = ["small_rng"] }
regex = "1.11.1"

Unchanged files with check annotations Beta

enum SentryError<'a> {
// TODO: Probably a good idea would be to `impl std:error:Error` for the
// three errors below.
Misc(&'a MiscError),

Check warning on line 57 in core/src/util/sentry.rs

GitHub Actions / check

field `0` is never read

Check warning on line 57 in core/src/util/sentry.rs

GitHub Actions / lints

field `0` is never read

Check warning on line 57 in core/src/util/sentry.rs

GitHub Actions / test

field `0` is never read
Mx(&'a MxError),

Check warning on line 58 in core/src/util/sentry.rs

GitHub Actions / check

field `0` is never read

Check warning on line 58 in core/src/util/sentry.rs

GitHub Actions / lints

field `0` is never read

Check warning on line 58 in core/src/util/sentry.rs

GitHub Actions / test

field `0` is never read
Smtp(&'a SmtpError),

Check warning on line 59 in core/src/util/sentry.rs

GitHub Actions / check

field `0` is never read

Check warning on line 59 in core/src/util/sentry.rs

GitHub Actions / lints

field `0` is never read

Check warning on line 59 in core/src/util/sentry.rs

GitHub Actions / test

field `0` is never read
}
impl<'a> SentryError<'a> {
#[derive(Debug)]
pub enum CsvError {
CsvLib(csv::Error),

Check warning on line 21 in backend/src/http/v0/bulk/error.rs

GitHub Actions / check

field `0` is never read

Check warning on line 21 in backend/src/http/v0/bulk/error.rs

GitHub Actions / test

field `0` is never read
CsvLibWriter(Box<csv::IntoInnerError<csv::Writer<Vec<u8>>>>),

Check warning on line 22 in backend/src/http/v0/bulk/error.rs

GitHub Actions / check

field `0` is never read

Check warning on line 22 in backend/src/http/v0/bulk/error.rs

GitHub Actions / test

field `0` is never read
Parse(&'static str),

Check warning on line 23 in backend/src/http/v0/bulk/error.rs

GitHub Actions / check

field `0` is never read

Check warning on line 23 in backend/src/http/v0/bulk/error.rs

GitHub Actions / test

field `0` is never read
}
/// Catch all error struct for the bulk endpoints
pub enum BulkError {
EmptyInput,
JobInProgress,
Db(sqlx::Error),

Check warning on line 31 in backend/src/http/v0/bulk/error.rs

GitHub Actions / check

field `0` is never read

Check warning on line 31 in backend/src/http/v0/bulk/error.rs

GitHub Actions / test

field `0` is never read
Csv(CsvError),
Json(serde_json::Error),
}
//! - Email deliverability: Is an email sent to this address deliverable?
//! - Syntax validation. Is the address syntactically valid?
//! - DNS records validation. Does the domain of the email address have valid
//! MX DNS records?

Check warning on line 26 in core/src/lib.rs

GitHub Actions / lints

doc list item without indentation
//! - Disposable email address (DEA) validation. Is the address provided by a
//! known disposable email address provider?

Check warning on line 28 in core/src/lib.rs

GitHub Actions / lints

doc list item without indentation
//! - SMTP server validation. Can the mail exchanger of the email address
//! domain be contacted successfully?

Check warning on line 30 in core/src/lib.rs

GitHub Actions / lints

doc list item without indentation
//! - Mailbox disabled. Has this email address been disabled by the email
//! provider?

Check warning on line 32 in core/src/lib.rs

GitHub Actions / lints

doc list item without indentation
//! - Full inbox. Is the inbox of this mailbox full?
//! - Catch-all address. Is this email address a catch-all address?
//!