From 1779b532a29a09317c284092c70f5ada24f127a0 Mon Sep 17 00:00:00 2001 From: Yagiz Nizipli Date: Mon, 4 Sep 2023 13:15:52 -0400 Subject: [PATCH] feat: update to ada v2.0.0 --- Cargo.lock | 4 +++- examples/collect_links/Cargo.toml | 2 +- lychee-bin/Cargo.toml | 2 +- lychee-lib/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a4563066f8..a4f588a148 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,9 @@ version = 3 [[package]] name = "ada-url" -version = "1.4.3" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c435e4d65694ea20db36a32b8fdc69bea1deecbcb7e6782a7f9c7f01a0012eb" dependencies = [ "cc", "derive_more", diff --git a/examples/collect_links/Cargo.toml b/examples/collect_links/Cargo.toml index 14758ffcb5..9c30f5885e 100644 --- a/examples/collect_links/Cargo.toml +++ b/examples/collect_links/Cargo.toml @@ -9,7 +9,7 @@ path = "collect_links.rs" [dependencies] lychee-lib = { path = "../../lychee-lib", version = "0.13.0", default-features = false } -ada-url = { path = "../../../ada-rust", features = ["serde"] } +ada-url = { version = "2.0.0", features = ["serde"] } tokio = { version = "1.32.0", features = ["full"] } regex = "1.9.3" http = "0.2.9" diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 40122c0ec9..af3d07daff 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -19,7 +19,7 @@ version = "0.13.0" [dependencies] lychee-lib = { path = "../lychee-lib", version = "0.13.0", default-features = false } -ada-url = { path = "../../ada-rust", features = ["serde"] } +ada-url = { version = "2.0.0", features = ["serde"] } anyhow = "1.0.75" assert-json-diff = "2.0.2" clap = { version = "4.3.23", features = ["env", "derive"] } diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml index ed85655c77..7ffc595245 100644 --- a/lychee-lib/Cargo.toml +++ b/lychee-lib/Cargo.toml @@ -17,7 +17,7 @@ repository = "https://github.com/lycheeverse/lychee" version = "0.13.0" [dependencies] -ada-url = { path = "../../ada-rust", features = ["serde"] } +ada-url = { version = "2.0.0", features = ["serde"] } async-stream = "0.3.5" cached = "0.44.0" check-if-email-exists = { version = "0.9.0", optional = true }