From b0c201f42d5e0dd1d000db1b2d5ce944b6274d93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jind=C5=99ich=20B=C3=A4r?= Date: Wed, 15 Jan 2025 12:38:29 +0100 Subject: [PATCH] docs: fix git patches section in readme --- README.md | 4 ++-- impit/README.md | 4 ++-- impit/src/lib.rs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7def0371..d4d0271a 100644 --- a/README.md +++ b/README.md @@ -48,8 +48,8 @@ Note that if you want to use this library in your rust project, you have to add impit = { git="https://github.com/apify/impit.git", branch="master" } [patch.crates-io] -rustls = { git="https://github.com/apify/rustls.git", branch="impit-patch" } -h2 = { git="https://github.com/apify/h2.git", branch="impit-patch" } +rustls = { git="https://github.com/apify/rustls.git" } +h2 = { git="https://github.com/apify/h2.git" } ``` Without the patched dependencies, the project won't build. diff --git a/impit/README.md b/impit/README.md index 7def0371..d4d0271a 100644 --- a/impit/README.md +++ b/impit/README.md @@ -48,8 +48,8 @@ Note that if you want to use this library in your rust project, you have to add impit = { git="https://github.com/apify/impit.git", branch="master" } [patch.crates-io] -rustls = { git="https://github.com/apify/rustls.git", branch="impit-patch" } -h2 = { git="https://github.com/apify/h2.git", branch="impit-patch" } +rustls = { git="https://github.com/apify/rustls.git" } +h2 = { git="https://github.com/apify/h2.git" } ``` Without the patched dependencies, the project won't build. diff --git a/impit/src/lib.rs b/impit/src/lib.rs index a0ec2bd5..68c4e6fa 100644 --- a/impit/src/lib.rs +++ b/impit/src/lib.rs @@ -48,8 +48,8 @@ //! impit = { git="https://github.com/apify/impit.git", branch="master" } //! //! [patch.crates-io] -//! rustls = { git="https://github.com/apify/rustls.git", branch="impit-patch" } -//! h2 = { git="https://github.com/apify/h2.git", branch="impit-patch" } +//! rustls = { git="https://github.com/apify/rustls.git" } +//! h2 = { git="https://github.com/apify/h2.git" } //! ``` //! //! Without the patched dependencies, the project won't build.