Skip to content

Commit

Permalink
vendored
Browse files Browse the repository at this point in the history
  • Loading branch information
amaury1093 committed Oct 5, 2024
1 parent 02c232a commit 30d7f4c
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 70 deletions.
82 changes: 13 additions & 69 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ resolver = "2"
[workspace.dependencies]
async-smtp = { version = "0.6.0", features = ["socks5"] }
futures = { version = "0.3.30" }
reqwest = { version = "0.12.5", features = ["json", "rustls-tls"] }
reqwest = { version = "0.12.5", features = ["json"] }
openssl = { version = "0.10.64", features = ["vendored"] }
sentry = "0.23"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
1 change: 1 addition & 0 deletions backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ async-smtp = { workspace = true }
check-if-email-exists = { path = "../core", features = ["headless", "sentry"] }
csv = "1.3.0"
dotenv = "0.15.0"
openssl = { workspace = true }
sentry = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ log = "0.4.22"
mailchecker = "6.0.9"
md5 = "0.7.0"
once_cell = "1.19.0"
openssl = { workspace = true }
pwned = "0.5.0"
rand = { version = "0.8.5", features = ["small_rng"] }
regex = "1.10.2"
Expand Down
1 change: 1 addition & 0 deletions worker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ config = { version = "0.14.0", features = ["toml"] }
futures = { workspace = true }
futures-lite = { version = "2.2.0" }
lapin = { version = "2.3.1" }
openssl = { workspace = true }
reqwest = { workspace = true }
sentry = "0.23"
serde = { workspace = true }
Expand Down

0 comments on commit 30d7f4c

Please sign in to comment.