chore: Remove version and publish field from internal crate (#2113)
feat: update `prost` to `v0.13.0` (#1779)BREAKING CHANGE: update prost version to v0.13.0
chore: Prepare `0.10` release (#1492)
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 ...
chore: Add cargo-machete to detect unused dependencies (#1259)
chore: Update to 2021 edition (#1188)
chore: Prepare 0.8 release (#1044)
feat: Update prost to 0.10 (#948)
chore: Fulfill MIT license requirments (#916)
chore: revert to 2018 edition (#847)Fixes https://github.com/hyperium/tonic/issues/843
chore: Upgrade to 2021 edition (#808)
feat: Update `prost` and friends to 0.9 (#791)
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
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]>
fix(build): Remove ambiguity in service method call (#327)When calling methods on Arc<MyService> where the method is also defined on Arc (e.g. drop and clone), calling inner.#method_ident(request)
fix(build): Remove ambiguity in service method call (#327)When calling methods on Arc<MyService> where the method is also defined on Arc (e.g. drop and clone), calling inner.#method_ident(request) will actually attempt to call the Arc method instead of the method on the service, resulting in a compile error. This change removes the ambiguity by dereferencing the inner Arc.