| 96912568 | 01-Jan-2025 |
tottoto <[email protected]> |
chore: Remove version and publish field from internal crate (#2113) |
| e4c71b8e | 04-Sep-2024 |
tottoto <[email protected]> |
feat(build): Rename compile method with compile_protos (#1920) |
| 3df62feb | 08-Jul-2024 |
Lucio Franco <[email protected]> |
feat: update `prost` to `v0.13.0` (#1779)
BREAKING CHANGE: update prost version to v0.13.0 |
| d59fe0da | 01-Sep-2023 |
Lucio Franco <[email protected]> |
chore: Prepare `0.10` release (#1492) |
| c9c4acbc | 22-Jun-2023 |
tottoto <[email protected]> |
chore: Use cargo-udeps to check unused dependencies (#1364)
* chore: Use cargo-udeps to check unused dependencies
* Exclude uds example on windows
* Revert to use tokio_stream::Stream instead of f
chore: Use cargo-udeps to check unused dependencies (#1364)
* chore: Use cargo-udeps to check unused dependencies
* Exclude uds example on windows
* Revert to use tokio_stream::Stream instead of futures_core::Stream
* Replace all futures_core:Stream with tokio_stream::Stream
* chore(web): Replace futures_core::Stream with tokio_stream::Stream
* chore(web): Use std version ready instead of futures-core version
* chore(tonic): Use futures-core via futures-util
* Revert "chore(web): Use std version ready instead of futures-core version"
This reverts commit 9d9458d9e632613f35f34c877bc162b3a03967b6.
* chore(examples): Refactor dependencies
* chore(tonic): Use tokio-stream::iter
* chore(reflection): Use tokio-stream::iter
---------
Co-authored-by: Lucio Franco <[email protected]>
show more ...
|
| b3567a39 | 08-Feb-2023 |
tottoto <[email protected]> |
chore: Add cargo-machete to detect unused dependencies (#1259) |
| 0ac0ce8c | 04-Feb-2023 |
tottoto <[email protected]> |
chore: Remove unused dependencies (#1244) |
| ff642f92 | 17-Jan-2023 |
Richard <[email protected]> |
feat(build): Builder: add {enum,message}_attributes (#1234)
Signed-off-by: Richard Leitner <[email protected]> |
| bf22a740 | 13-Dec-2022 |
tottoto <[email protected]> |
chore: Update to 2021 edition (#1188) |
| 363c04a2 | 13-Dec-2022 |
tottoto <[email protected]> |
chore: Remove unused bytes from dependencies (#1186) |
| 2dd09c02 | 13-Dec-2022 |
tottoto <[email protected]> |
chore: Fix clippy lint (#1181) |
| ec359ba3 | 29-Jul-2022 |
Lucio Franco <[email protected]> |
chore: Prepare 0.8 release (#1044) |
| c78274e3 | 30-Mar-2022 |
Jesse Szwedko <[email protected]> |
feat: Update prost to 0.10 (#948) |
| c9e78c4d | 18-Feb-2022 |
Sylwester Rąpała <[email protected]> |
chore: Fulfill MIT license requirments (#916) |
| 101f2f76 | 07-Dec-2021 |
David Pedersen <[email protected]> |
chore: revert to 2018 edition (#847)
Fixes https://github.com/hyperium/tonic/issues/843 |
| 1f3df8db | 25-Oct-2021 |
Lucio Franco <[email protected]> |
chore: Upgrade to 2021 edition (#808) |
| 09805ece | 19-Oct-2021 |
Eliza Weisman <[email protected]> |
feat: Update `prost` and friends to 0.9 (#791) |
| 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 ...
|
| fdda5ae2 | 11-Jan-2021 |
Quentin Perez <[email protected]> |
Upgrade to Tokio 1.0.0 ecosystem (#530)
* Upgrade Tonic to Tokio 1.0
Work in progress for updating Tonic to Tokio 1.0. Since tower has not
been released to crates.io, a git dependency is taken i
Upgrade to Tokio 1.0.0 ecosystem (#530)
* Upgrade Tonic to Tokio 1.0
Work in progress for updating Tonic to Tokio 1.0. Since tower has not
been released to crates.io, a git dependency is taken instead.
* Upgrade Tonic to Tokio 1.0 phase 2
* tonic: remove tower-* deps
* Apply suggestions from code review
Co-authored-by: Ed Marshall <[email protected]>
Co-authored-by: Lucio Franco <[email protected]>
show more ...
|
| e5b1f8a1 | 01-Apr-2020 |
Lucio Franco <[email protected]> |
chore: Rename internal uuid crate (#319)
Signed-off-by: Lucio Franco <[email protected]> |
| 2e082f8b | 29-Mar-2020 |
Lucio Franco <[email protected]> |
chore(build): Refactor codegen traits (#302)
Signed-off-by: Lucio Franco <[email protected]> |
| f65cda1e | 01-Mar-2020 |
Gyusun Yeom <[email protected]> |
feat(build): Decouple codgen from `prost` (#170) |
| 1b3d1072 | 18-Feb-2020 |
Danny Hua <[email protected]> |
fix(build): Don't replace extern_paths (#261)
* don't replace extern_path'd paths
tonic-build will replace all paths except for google well known types
with one rooted at the super module. For p
fix(build): Don't replace extern_paths (#261)
* don't replace extern_path'd paths
tonic-build will replace all paths except for google well known types
with one rooted at the super module. For paths that have already been
replaced with a fully qualified path via the extern_path config option,
(e.g. "::uuid::Uuid"), this results in an invalid path
(e.g. "super::::uuid::Uuid"), and a build failure. These paths should
also be excluded when prefixing relative modules with super.
* add doc in tonic-build clarifying extern_path
extern_path expects fully qualified proto and rust paths
* add test cast case for extern path fix
add a test that extern path does indeed result in service types using
the specified type from an external crate. we test this by creating a
service type that has a proto from a different crate, and asserting that
it does indeed impl a trait from that crate
* add license/publish to extern_path test crates
show more ...
|