-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1719a2e
commit 93b4a7f
Showing
4 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
title: Initial Setup | ||
layout: guide | ||
permalink: /guides/1/init/setup/ | ||
--- | ||
|
||
This will help get your initial setup ready to be able to try out the | ||
lessons in the guides. | ||
|
||
## Dependencies | ||
|
||
To make things simple, you can add the follow crates to your | ||
`Cargo.toml`: | ||
|
||
```toml | ||
[dependencies] | ||
hyper = { version = "1", features = ["full"] } | ||
tokio = { version = "1", features = ["full"] } | ||
http-body-util = "0.1" | ||
hyper-util = { version = "0.1", features = ["full"] } | ||
``` | ||
|
||
And with that, you're good to go! Depending on what you want to | ||
accomplish, you can move on to either the [client][] or [server][] | ||
guides. | ||
|
||
[client]: ../../client | ||
[server]: ../../server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters