Skip to content

Commit 123ae2a

Browse files
committed
update to published hyper-util
1 parent ce71203 commit 123ae2a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/check_guides.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ EOF
2222
hyper = { version = "1", features = ["full"] }
2323
tokio = { version = "1", features = ["full"] }
2424
http-body-util = "0.1"
25-
hyper-util = { git = "https://github.com/hyperium/hyper-util.git" }
25+
hyper-util = { version = "0.1", features = ["full"] }
2626
EOF
2727
cargo build --manifest-path "$value/Cargo.toml"
2828
fi

_stable/client/basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Let's tell Cargo about our dependencies by having this in the Cargo.toml.
1414
hyper = { version = "1", features = ["full"] }
1515
tokio = { version = "1", features = ["full"] }
1616
http-body-util = "0.1"
17-
hyper-util = { git = "https://github.com/hyperium/hyper-util.git" }
17+
hyper-util = { version = "0.1", features = ["full"] }
1818
```
1919

2020
Now, we need to import pieces to use from our dependencies:

_stable/server/hello-world.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ First we need to declare our dependencies, let's add the following to our `Cargo
1212
hyper = { version = "1", features = ["full"] }
1313
tokio = { version = "1", features = ["full"] }
1414
http-body-util = "0.1"
15-
hyper-util = { git = "https://github.com/hyperium/hyper-util.git" }
15+
hyper-util = { version = "0.1", features = ["full"] }
1616
```
1717

1818
Next, we need to add some imports in our `main.rs` file:

0 commit comments

Comments
 (0)