Skip to content
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 35 commits into from
Oct 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
28e66ef
started routeguide tutorial
alce Sep 30, 2019
2459ff6
remove original go code
alce Sep 30, 2019
4d7f143
Apply suggestions from code review
alce Oct 1, 2019
87d5ef3
update urls, make capitalization consistent
alce Oct 1, 2019
7007797
Merge remote-tracking branch 'upstream/master' into tutorial
alce Oct 1, 2019
d11d7b6
pin all alpha dependencies
alce Oct 1, 2019
cb84a13
Merge branch 'master' of github.com:LucioFranco/tonic
alce Oct 1, 2019
824043e
Merge branch 'master' into tutorial
alce Oct 1, 2019
2883d80
some method implementations
alce Oct 1, 2019
ea649a6
spurious commit, testing CI
alce Oct 1, 2019
e3ea43c
spurious 2
alce Oct 1, 2019
481c3a9
Merge branch 'master' of github.com:hyperium/tonic
alce Oct 2, 2019
0d676f4
Merge branch 'master' into tutorial
alce Oct 2, 2019
d6d2efd
server state
alce Oct 2, 2019
14a4e13
delete repeted lines, wording
alce Oct 2, 2019
bbb8561
improve route_chat, record_route and list_features
alce Oct 2, 2019
a000abd
a little love for the client
alce Oct 2, 2019
e617bef
cleanup stubbed content
alce Oct 2, 2019
1e47dfc
simplify loading features from json file
alce Oct 2, 2019
c3d598c
server section should be ready for review
alce Oct 2, 2019
12bf715
minor tweaks, wording
alce Oct 3, 2019
5e6d717
client setup
alce Oct 3, 2019
b018273
example: implement client list_features
alce Oct 3, 2019
1ad36b1
tweaks to server, a bit more client
alce Oct 5, 2019
6979497
typo
alce Oct 5, 2019
ea666ff
tutorial ready for review
alce Oct 5, 2019
6a452ca
typo
alce Oct 5, 2019
920426f
server section tweaks
alce Oct 6, 2019
460e82a
client tweaks
alce Oct 6, 2019
e0d558b
include server side `use`
alce Oct 6, 2019
f8a976b
upgrade tonic to alpha.2
alce Oct 8, 2019
193c35a
move notes map out of shared state
alce Oct 13, 2019
ddf33da
address blgBV's comments
alce Oct 14, 2019
e03408a
Merge remote-tracking branch 'origin/master' into tutorial
LucioFranco Oct 18, 2019
bf7428c
Update route guide tutorial to track latest master
LucioFranco Oct 18, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tonic-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ tower = "=0.3.0-alpha.2"
# Required for routeguide
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.7.2"

[build-dependencies]
tonic-build = { path = "../tonic-build" }
Loading