You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prost 0.7.0 is now out. It includes general improvements, like
support for zero-copy deserialization of bytes fields, as well as
improvements of specific interest to Tonic, like support for file
descriptor sets to support gRPC reflection.
Applications that use Tonic cannot easily upgrade Prost until Tonic
itself is updated. (When I try to make the obvious change in my
downstream project, I get a slew of trait bound errors because of the
duplicate versions of prost::message::Message.)
Prost 0.7.0 depends on bytes = "1", so this may be blocked on
upgrading to v1 of the Tokio ecosystem.
The text was updated successfully, but these errors were encountered:
Feature Request
Upgrade to support Prost 0.7.0.
Crates
All.
Motivation
Prost 0.7.0 is now out. It includes general improvements, like
support for zero-copy deserialization of
bytes
fields, as well asimprovements of specific interest to Tonic, like support for file
descriptor sets to support gRPC reflection.
Applications that use Tonic cannot easily upgrade Prost until Tonic
itself is updated. (When I try to make the obvious change in my
downstream project, I get a slew of trait bound errors because of the
duplicate versions of
prost::message::Message
.)Prost 0.7.0 depends on
bytes = "1"
, so this may be blocked onupgrading to v1 of the Tokio ecosystem.
The text was updated successfully, but these errors were encountered: