From 8a7658745d7740f969d8c9ae876fdcf2e2ac7623 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Tue, 4 Feb 2025 16:00:17 +0100 Subject: [PATCH] chore: Fallback to `jplatte/eyeball` instead of `Hywan/eyeball`'s fork. --- .deny.toml | 4 ++-- Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.deny.toml b/.deny.toml index 2824f0286b1..527040dbc94 100644 --- a/.deny.toml +++ b/.deny.toml @@ -64,6 +64,6 @@ allow-git = [ # We can release vodozemac whenever we need but let's not block development # on releases. "https://github.com/matrix-org/vodozemac", - # Waiting for features to land in `eyeball . - "https://github.com/Hywan/eyeball", + # Waiting for features to be released. + "https://github.com/jplatte/eyeball", ] diff --git a/Cargo.lock b/Cargo.lock index 4fd1c1eec70..1b974752bba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1755,7 +1755,7 @@ dependencies = [ [[package]] name = "eyeball" version = "0.8.8" -source = "git+https://github.com/Hywan/eyeball?branch=feat-im-util-skip#23104aeb9acf128c5f7d3e8e73ddbca25e88d9f4" +source = "git+https://github.com/jplatte/eyeball?branch=main#b4ca8997db0ee3767bbc08a2aec788cac05c55ac" dependencies = [ "futures-core", "readlock", @@ -1768,7 +1768,7 @@ dependencies = [ [[package]] name = "eyeball-im" version = "0.6.0" -source = "git+https://github.com/Hywan/eyeball?branch=feat-im-util-skip#23104aeb9acf128c5f7d3e8e73ddbca25e88d9f4" +source = "git+https://github.com/jplatte/eyeball?branch=main#b4ca8997db0ee3767bbc08a2aec788cac05c55ac" dependencies = [ "futures-core", "imbl", @@ -1779,7 +1779,7 @@ dependencies = [ [[package]] name = "eyeball-im-util" version = "0.8.0" -source = "git+https://github.com/Hywan/eyeball?branch=feat-im-util-skip#23104aeb9acf128c5f7d3e8e73ddbca25e88d9f4" +source = "git+https://github.com/jplatte/eyeball?branch=main#b4ca8997db0ee3767bbc08a2aec788cac05c55ac" dependencies = [ "arrayvec", "eyeball-im", diff --git a/Cargo.toml b/Cargo.toml index 52fcc9a779c..165cc836ac0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,9 +33,9 @@ as_variant = "1.2.0" base64 = "0.22.1" byteorder = "1.5.0" chrono = "0.4.39" -eyeball = { git = "https://github.com/Hywan/eyeball", branch = "feat-im-util-skip", features = ["tracing"] } -eyeball-im = { git = "https://github.com/Hywan/eyeball", branch = "feat-im-util-skip", features = ["tracing"] } -eyeball-im-util = { git = "https://github.com/Hywan/eyeball", branch = "feat-im-util-skip" } +eyeball = { git = "https://github.com/jplatte/eyeball", branch = "main", features = ["tracing"] } +eyeball-im = { git = "https://github.com/jplatte/eyeball", branch = "main", features = ["tracing"] } +eyeball-im-util = { git = "https://github.com/jplatte/eyeball", branch = "main" } futures-core = "0.3.31" futures-executor = "0.3.31" futures-util = "0.3.31"