Fix issues with some dependencies (#140)

* Try to make lychee buildable for Apple Silicon (ring)
* Fix issues with old tokio 0.2 deps (async_smtp)
This commit is contained in:
Matthias 2021-02-12 22:34:41 +01:00 committed by GitHub
parent 5401e3a3d9
commit 75e2f32fac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 114 additions and 418 deletions

519
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -21,11 +21,15 @@ anyhow = "1.0.38"
futures = "0.3.12"
glob = "0.3.0"
http = "0.2.3"
hubcaps = "0.6.2"
# Switch back to version on crates.io after 0.6.3+ is released
hubcaps = { git="https://github.com/softprops/hubcaps.git" }
linkify = "0.4.0"
regex = "1.4.3"
url = "2.2.0"
check-if-email-exists = "0.8.19"
# Switch back to version on crates.io after
# https://github.com/async-email/async-smtp/pull/36
# is merged and a new version of check-if-email-exists is released
check-if-email-exists = { git="https://github.com/reacherhq/check-if-email-exists.git" }
indicatif = "0.15.0"
structopt = "0.3.21"
toml = "0.5.8"
@ -42,6 +46,11 @@ lazy_static = "1.4.0"
wiremock = "0.4.9"
openssl-sys = "0.9.60"
serde_json = "1.0.62"
# Make build work on Apple Silicon.
# See https://github.com/briansmith/ring/issues/1163
# This is necessary for the homebrew build
# https://github.com/Homebrew/homebrew-core/pull/70216
ring = "0.16.19"
[dependencies.reqwest]
features = ["gzip"]