History log of /tonic/examples/helloworld-tutorial.md (Results 1 – 25 of 39)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# eb66b914 14-Nov-2024 Easwar Swaminathan <[email protected]>

examples: switch version to last released version (#2047)

As part of https://github.com/hyperium/tonic/pull/2014, the versions of
"tonic" and "tonic-build" were changed to "0.13". This breaks the
in

examples: switch version to last released version (#2047)

As part of https://github.com/hyperium/tonic/pull/2014, the versions of
"tonic" and "tonic-build" were changed to "0.13". This breaks the
instuctions in the examples documentation with an error like:
```
helloworld_tonic$ cargo run --bin helloworld-server
Updating crates.io index
error: failed to select a version for the requirement `tonic = "^0.13"`
candidate versions found which didn't match: 0.12.3, 0.12.2, 0.12.1, ...
location searched: crates.io index
required by package `helloworld-tonic v0.1.0 (/usr/local/google/home/easwars/src/rust/projects/helloworld_tonic)`
if you are looking for the prerelease package it needs to be specified explicitly
tonic = { version = "0.1.0-beta.1" }
```

This PR changes the version of "tonic" and "tonic-build" to "*" which
results in the latest version getting picked. Setting it to "*" also has
the nice property of not having to update the examples everytime a
version bump is required.

Co-authored-by: Lucio Franco <[email protected]>

show more ...


# 3009cf52 22-Oct-2024 tottoto <[email protected]>

chore: Start development of version 0.13 (#2014)


Revision tags: v0.12.3, v0.12.2, v0.12.1
# 4aad5afa 13-Jul-2024 Luke <[email protected]>

fixed hello world and route guide tutorials (#1791)


Revision tags: v0.12.0
# 2eeca95e 08-Jul-2024 Lucio Franco <[email protected]>

chore: release v0.12.0 (#1740)

* chore: prepare v0.12.0 release

* add changelog

* fix version links

* update changelog

* update changelog to include prost update


# d9fa6739 31-May-2024 Maxime <[email protected]>

docs: simplify helloworld-tutorial (#1369)

- Remove the `hello_world` crate prefix, `HelloReply` is imported directly.
- Remove useless calls to `into()`:

error: useless conversion to the same t

docs: simplify helloworld-tutorial (#1369)

- Remove the `hello_world` crate prefix, `HelloReply` is imported directly.
- Remove useless calls to `into()`:

error: useless conversion to the same type: `std::string::String`
--> src/main.rs:18:22
|
18 | message: format!("Hello {}!", request.into_inner().name).into(),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `format!("Hello {}!", request.into_inner().name)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
= note: `-D clippy::useless-conversion` implied by `-D warnings`

Co-authored-by: tottoto <[email protected]>

show more ...


Revision tags: v0.11.0
# ea8cd3f3 08-Feb-2024 Lucio Franco <[email protected]>

chore: prepare v0.11.0 release (#1626)


# 42274686 02-Feb-2024 Netanel Rabinowitz <[email protected]>

Update helloworld-tutorial.md - Fix Clippy lints (#1617)

warning: useless conversion to the same type: `std::string::String`


Revision tags: v0.10.2, v0.10.1
# d5c14fa2 21-Sep-2023 Lucio Franco <[email protected]>

chore: Prepare `0.10.1` release (#1529)


Revision tags: v0.10.0
# d59fe0da 01-Sep-2023 Lucio Franco <[email protected]>

chore: Prepare `0.10` release (#1492)


Revision tags: v0.9.2, v0.9.1
# 01cba499 03-Apr-2023 Lucio Franco <[email protected]>

chore: Prepare `0.9.1` release (#1343)

* Update documentation url in cargo tomls

* Bump versions to 0.9.1

* Update guides

* Add prepare/publish scripts

* Update changelog


Revision tags: v0.9.0
# dcb00262 14-Mar-2023 Sheng Zheng <[email protected]>

fix document for helloworld-tutorial.md (#1316)

Signed-off-by: ZhengSheng0524 <[email protected]>


Revision tags: v0.8.4, v0.8.3, v0.8.2, v0.8.1
# 2d66a0aa 15-Aug-2022 Masakazu Muraoka <[email protected]>

Update helloworld-tutorial.md (#1057)

grpcurl command have been run successfully with modifieded like above.


Revision tags: v0.8.0
# ec359ba3 29-Jul-2022 Lucio Franco <[email protected]>

chore: Prepare 0.8 release (#1044)


# ec9ee619 20-May-2022 Joseph LeBlanc <[email protected]>

Small wording change for newbie-friendly clarity (#995)


Revision tags: v0.7.2, v0.7.1, v0.7.0
# 808c417c 31-Mar-2022 Lucio Franco <[email protected]>

chore: Prepare 0.10 release (#954)


# d6c0fc11 10-Feb-2022 Matthias Vogelgesang <[email protected]>

feat(build): use prettyplease to format output (#890) (#904)


Revision tags: v0.6.2
# c62f382e 11-Nov-2021 Mfon Eti-mfon <[email protected]>

chore(examples): fix wording in helloworld tutorial (#836)

closes #835


Revision tags: v0.6.1, v0.6.0
# 2fe7131a 25-Oct-2021 Lucio Franco <[email protected]>

chore: Prepare `0.6.0` release (#811)


# 1f3df8db 25-Oct-2021 Lucio Franco <[email protected]>

chore: Upgrade to 2021 edition (#808)


Revision tags: v0.5.2, v0.5.1, v0.5.0
# 040e3a48 08-Jul-2021 Lucio Franco <[email protected]>

chore: Prepare v0.5 release (#706)

* bump tonic version to 0.5

* Update changelog for 0.5

* Update CHANGELOG.md

Co-authored-by: David Pedersen <[email protected]>

* address comments

chore: Prepare v0.5 release (#706)

* bump tonic version to 0.5

* Update changelog for 0.5

* Update CHANGELOG.md

Co-authored-by: David Pedersen <[email protected]>

* address comments

Co-authored-by: David Pedersen <[email protected]>

show more ...


# acdb3273 08-Jul-2021 David Pedersen <[email protected]>

chore: update prost, and related crates, to 0.8 (#703)

* chore: update prost, and related crates, to 0.8

Updates prost, prost-derive, prost-build, and prost-types to 0.8.

* Update the last few

chore: update prost, and related crates, to 0.8 (#703)

* chore: update prost, and related crates, to 0.8

Updates prost, prost-derive, prost-build, and prost-types to 0.8.

* Update the last few places

show more ...


# f613386d 14-May-2021 JaydenElliott <[email protected]>

doc(examples): fixed grammar (#646)


Revision tags: v0.4.3, v0.4.2, v0.4.1
# 07d2f982 02-Feb-2021 16yuki0702 <[email protected]>

Fix helloworld tutorial. (#546)

updated tutorial to use tokio 1.x.


Revision tags: v0.4.0
# fda2d689 15-Jan-2021 Lucio Franco <[email protected]>

chore: Prepare `0.4` release (#538)

* Prepare `0.4` release

* Fix cargo issues


Revision tags: v0.3.1, v0.3.0
# 62b8ab0b 13-Jul-2020 Lucio Franco <[email protected]>

chore: Prepare 0.3.0 release (#399)

* chore: Prepare 0.3.0 release

* update changelog

* fix builds

* Update breaking changes


12