Skip to content

Commit 882833d

Browse files
authored
docs: fix git patches section in readme (#10)
1 parent 5629e95 commit 882833d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ Note that if you want to use this library in your rust project, you have to add
4848
impit = { git="https://github.com/apify/impit.git", branch="master" }
4949

5050
[patch.crates-io]
51-
rustls = { git="https://github.com/apify/rustls.git", branch="impit-patch" }
52-
h2 = { git="https://github.com/apify/h2.git", branch="impit-patch" }
51+
rustls = { git="https://github.com/apify/rustls.git" }
52+
h2 = { git="https://github.com/apify/h2.git" }
5353
```
5454

5555
Without the patched dependencies, the project won't build.

impit/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ Note that if you want to use this library in your rust project, you have to add
4848
impit = { git="https://github.com/apify/impit.git", branch="master" }
4949

5050
[patch.crates-io]
51-
rustls = { git="https://github.com/apify/rustls.git", branch="impit-patch" }
52-
h2 = { git="https://github.com/apify/h2.git", branch="impit-patch" }
51+
rustls = { git="https://github.com/apify/rustls.git" }
52+
h2 = { git="https://github.com/apify/h2.git" }
5353
```
5454

5555
Without the patched dependencies, the project won't build.

impit/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@
4848
//! impit = { git="https://github.com/apify/impit.git", branch="master" }
4949
//!
5050
//! [patch.crates-io]
51-
//! rustls = { git="https://github.com/apify/rustls.git", branch="impit-patch" }
52-
//! h2 = { git="https://github.com/apify/h2.git", branch="impit-patch" }
51+
//! rustls = { git="https://github.com/apify/rustls.git" }
52+
//! h2 = { git="https://github.com/apify/h2.git" }
5353
//! ```
5454
//!
5555
//! Without the patched dependencies, the project won't build.

0 commit comments

Comments
 (0)