-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(docs): Add routeguide tutorial #21
Merged
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
28e66ef
started routeguide tutorial
alce 2459ff6
remove original go code
alce 4d7f143
Apply suggestions from code review
alce 87d5ef3
update urls, make capitalization consistent
alce 7007797
Merge remote-tracking branch 'upstream/master' into tutorial
alce d11d7b6
pin all alpha dependencies
alce cb84a13
Merge branch 'master' of github.com:LucioFranco/tonic
alce 824043e
Merge branch 'master' into tutorial
alce 2883d80
some method implementations
alce ea649a6
spurious commit, testing CI
alce e3ea43c
spurious 2
alce 481c3a9
Merge branch 'master' of github.com:hyperium/tonic
alce 0d676f4
Merge branch 'master' into tutorial
alce d6d2efd
server state
alce 14a4e13
delete repeted lines, wording
alce bbb8561
improve route_chat, record_route and list_features
alce a000abd
a little love for the client
alce e617bef
cleanup stubbed content
alce 1e47dfc
simplify loading features from json file
alce c3d598c
server section should be ready for review
alce 12bf715
minor tweaks, wording
alce 5e6d717
client setup
alce b018273
example: implement client list_features
alce 1ad36b1
tweaks to server, a bit more client
alce 6979497
typo
alce ea666ff
tutorial ready for review
alce 6a452ca
typo
alce 920426f
server section tweaks
alce 460e82a
client tweaks
alce e0d558b
include server side `use`
alce f8a976b
upgrade tonic to alpha.2
alce 193c35a
move notes map out of shared state
alce ddf33da
address blgBV's comments
alce e03408a
Merge remote-tracking branch 'origin/master' into tutorial
LucioFranco bf7428c
Update route guide tutorial to track latest master
LucioFranco File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
move notes map out of shared state
- Loading branch information
commit 193c35af66ad1b6946a400f47b4246b27a354b1e
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would be a great way to use the
async-stream
crate right? Maybe mention it here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
async-stream is used on the bidirectional streaming example and we talk abut it briefly. Do you think we should use it here too or explain in a bit more detail what it does?