History log of /tonic/.github/workflows/ (Results 1 – 25 of 93)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
dcaa679123-Jan-2025 tottoto <[email protected]>

chore: Introduce rust-version in manifest (#2160)

fb207adb17-Jan-2025 tottoto <[email protected]>

chore(ci): Run doc test only on ubuntu (#2149)

f10bb76212-Jan-2025 tottoto <[email protected]>

chore(ci): Enable all feature on testing document (#2140)


CI.yml
/tonic/Cargo.toml
/tonic/README.md
/tonic/codegen/Cargo.toml
/tonic/examples/Cargo.toml
/tonic/examples/src/mock/mock.rs
/tonic/interop/Cargo.toml
/tonic/interop/src/server.rs
/tonic/tests/ambiguous_methods/Cargo.toml
/tonic/tests/compression/Cargo.toml
/tonic/tests/compression/src/bidirectional_stream.rs
/tonic/tests/compression/src/client_stream.rs
/tonic/tests/compression/src/compressing_request.rs
/tonic/tests/compression/src/compressing_response.rs
/tonic/tests/compression/src/server_stream.rs
/tonic/tests/compression/src/util.rs
/tonic/tests/default_stubs/Cargo.toml
/tonic/tests/deprecated_methods/Cargo.toml
/tonic/tests/disable_comments/Cargo.toml
/tonic/tests/extern_path/my_application/Cargo.toml
/tonic/tests/extern_path/uuid/Cargo.toml
/tonic/tests/included_service/Cargo.toml
/tonic/tests/integration_tests/Cargo.toml
/tonic/tests/integration_tests/tests/max_message_size.rs
/tonic/tests/integration_tests/tests/status.rs
/tonic/tests/root-crate-path/Cargo.toml
/tonic/tests/same_name/Cargo.toml
/tonic/tests/service_named_result/Cargo.toml
/tonic/tests/service_named_service/Cargo.toml
/tonic/tests/skip_debug/Cargo.toml
/tonic/tests/stream_conflict/Cargo.toml
/tonic/tests/use_arc_self/Cargo.toml
/tonic/tests/web/Cargo.toml
/tonic/tests/wellknown-compiled/Cargo.toml
/tonic/tests/wellknown/Cargo.toml
/tonic/tonic-build/Cargo.toml
/tonic/tonic-build/src/lib.rs
/tonic/tonic-health/Cargo.toml
/tonic/tonic-health/src/lib.rs
/tonic/tonic-health/src/server.rs
/tonic/tonic-reflection/Cargo.toml
/tonic/tonic-reflection/src/lib.rs
/tonic/tonic-reflection/src/server/v1.rs
/tonic/tonic-reflection/src/server/v1alpha.rs
/tonic/tonic-reflection/tests/server.rs
/tonic/tonic-reflection/tests/versions.rs
/tonic/tonic-types/Cargo.toml
/tonic/tonic-types/README.md
/tonic/tonic-types/src/lib.rs
/tonic/tonic-web/Cargo.toml
/tonic/tonic-web/README.md
/tonic/tonic-web/src/client.rs
/tonic/tonic-web/src/lib.rs
/tonic/tonic/Cargo.toml
/tonic/tonic/benches/decode.rs
/tonic/tonic/src/client/grpc.rs
/tonic/tonic/src/codec/compression.rs
/tonic/tonic/src/lib.rs
/tonic/tonic/src/response.rs
/tonic/tonic/src/server/grpc.rs
/tonic/tonic/src/service/router.rs
/tonic/tonic/src/transport/channel/endpoint.rs
/tonic/tonic/src/transport/channel/service/discover.rs
/tonic/tonic/src/transport/server/incoming.rs
/tonic/tonic/src/transport/server/mod.rs
/tonic/tonic/src/transport/server/service/io.rs
/tonic/tonic/src/transport/server/service/mod.rs
/tonic/tonic/src/transport/server/service/tls.rs
/tonic/tonic/src/transport/server/tls.rs
/tonic/tonic/src/transport/server/unix.rs
f0156d4e01-Jan-2025 tottoto <[email protected]>

chore: Bump msrv to 1.75 (#2111)

a22b61d105-Dec-2024 tottoto <[email protected]>

chore(ci): Simplify job name (#2089)

2ab164e805-Dec-2024 tottoto <[email protected]>

chore(ci): Check clippy warning (#2088)

f833ce1105-Dec-2024 tottoto <[email protected]>

chore(ci): Use cargo-deny directly (#2087)

93c92d8001-Dec-2024 tottoto <[email protected]>

chore(ci): Update to nightly-2024-12-01 on udeps ci (#2080)

3ad90f6530-Nov-2024 tottoto <[email protected]>

chore(ci): Use cargo-nextest to speedup test (#2075)


CI.yml
/tonic/deny.toml
/tonic/examples/Cargo.toml
/tonic/examples/helloworld-tutorial.md
/tonic/examples/routeguide-tutorial.md
/tonic/examples/src/dynamic_load_balance/client.rs
/tonic/examples/src/h2c/client.rs
/tonic/examples/src/h2c/server.rs
/tonic/examples/src/streaming/server.rs
/tonic/examples/src/tls_rustls/client.rs
/tonic/examples/src/tls_rustls/server.rs
/tonic/examples/src/tower/client.rs
/tonic/examples/src/tower/server.rs
/tonic/interop/Cargo.toml
/tonic/interop/data/ca.pem
/tonic/interop/data/cert-generator/ca.tf
/tonic/interop/data/cert-generator/server_certs.tf
/tonic/interop/data/server1.key
/tonic/interop/data/server1.pem
/tonic/interop/src/server.rs
/tonic/tests/compression/src/util.rs
/tonic/tests/integration_tests/tests/client_layer.rs
/tonic/tests/integration_tests/tests/complex_tower_middleware.rs
/tonic/tests/integration_tests/tests/connect_info.rs
/tonic/tests/integration_tests/tests/connection.rs
/tonic/tests/integration_tests/tests/extensions.rs
/tonic/tests/integration_tests/tests/http2_keep_alive.rs
/tonic/tests/integration_tests/tests/http2_max_header_list_size.rs
/tonic/tests/integration_tests/tests/interceptor.rs
/tonic/tests/integration_tests/tests/origin.rs
/tonic/tests/integration_tests/tests/routes_builder.rs
/tonic/tests/integration_tests/tests/status.rs
/tonic/tests/integration_tests/tests/streams.rs
/tonic/tests/integration_tests/tests/user_agent.rs
/tonic/tests/root-crate-path/src/main.rs
/tonic/tests/web/tests/grpc_web.rs
/tonic/tonic-build/src/client.rs
/tonic/tonic-build/src/prost.rs
/tonic/tonic-build/src/server.rs
/tonic/tonic-health/Cargo.toml
/tonic/tonic-health/src/generated/grpc_health_v1.rs
/tonic/tonic-reflection/Cargo.toml
/tonic/tonic-reflection/src/generated/grpc_reflection_v1.rs
/tonic/tonic-reflection/src/generated/grpc_reflection_v1alpha.rs
/tonic/tonic-reflection/src/server/mod.rs
/tonic/tonic-reflection/src/server/v1.rs
/tonic/tonic-reflection/src/server/v1alpha.rs
/tonic/tonic-web/Cargo.toml
/tonic/tonic-web/src/client.rs
/tonic/tonic-web/src/lib.rs
/tonic/tonic-web/src/service.rs
/tonic/tonic/Cargo.toml
/tonic/tonic/src/body.rs
/tonic/tonic/src/client/grpc.rs
/tonic/tonic/src/codec/decode.rs
/tonic/tonic/src/codegen.rs
/tonic/tonic/src/lib.rs
/tonic/tonic/src/request.rs
/tonic/tonic/src/server/grpc.rs
/tonic/tonic/src/service/interceptor.rs
/tonic/tonic/src/service/mod.rs
/tonic/tonic/src/service/router.rs
/tonic/tonic/src/transport/channel/mod.rs
/tonic/tonic/src/transport/channel/service/connection.rs
/tonic/tonic/src/transport/channel/service/discover.rs
/tonic/tonic/src/transport/channel/service/mod.rs
/tonic/tonic/src/transport/channel/service/tls.rs
/tonic/tonic/src/transport/mod.rs
/tonic/tonic/src/transport/server/incoming.rs
/tonic/tonic/src/transport/server/io_stream.rs
/tonic/tonic/src/transport/server/mod.rs
/tonic/tonic/src/transport/server/service/recover_error.rs
/tonic/tonic/src/transport/service/tls.rs
b28b59b206-Nov-2024 Jen Cecelia Reiss <[email protected]>

feat(tls): AWS Libcrypto Support (#2008)

* add tls crypto provider feature

* fix features

* fix

* fix

* add tls-aws-lc to conditional compilation

* fix conditional compilation

* fix conditiona

feat(tls): AWS Libcrypto Support (#2008)

* add tls crypto provider feature

* fix features

* fix

* fix

* add tls-aws-lc to conditional compilation

* fix conditional compilation

* fix conditional compilation

* revert formatting

* revert formatting

* add tls-any and deprecate tls

* formatting

* revert formatting

* revert formatting

* clean up #[cfg(..)]

* tests pass

* update workflow for new features

* internal feature flag

* revert formatting

* update docs

* specify rustls version in tests

* tls only depends on tls-ring

* update CI + deps

* minor change for force push

* fmt

* fix docs

* fix ring docs link

* Update Cargo.toml

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

---------

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

show more ...

4f8beb6405-Nov-2024 tottoto <[email protected]>

chore: Update to cargo-check-external-types 0.1.13 (#2021)


CI.yml
/tonic/CHANGELOG.md
/tonic/README.md
/tonic/codegen/Cargo.toml
/tonic/codegen/src/main.rs
/tonic/examples/Cargo.toml
/tonic/examples/helloworld-tutorial.md
/tonic/examples/routeguide-tutorial.md
/tonic/examples/src/grpc-web/server.rs
/tonic/examples/src/h2c/client.rs
/tonic/examples/src/h2c/server.rs
/tonic/examples/src/tower/client.rs
/tonic/examples/src/tower/server.rs
/tonic/interop/Cargo.toml
/tonic/tests/compression/Cargo.toml
/tonic/tests/integration_tests/Cargo.toml
/tonic/tonic-build/Cargo.toml
/tonic/tonic-build/src/lib.rs
/tonic/tonic-build/src/server.rs
/tonic/tonic-health/Cargo.toml
/tonic/tonic-health/src/generated/grpc_health_v1.rs
/tonic/tonic-health/src/generated/grpc_health_v1_fds.rs
/tonic/tonic-health/src/lib.rs
/tonic/tonic-reflection/Cargo.toml
/tonic/tonic-reflection/src/generated/grpc_reflection_v1.rs
/tonic/tonic-reflection/src/generated/grpc_reflection_v1alpha.rs
/tonic/tonic-reflection/src/generated/reflection_v1_fds.rs
/tonic/tonic-reflection/src/generated/reflection_v1alpha1_fds.rs
/tonic/tonic-reflection/src/lib.rs
/tonic/tonic-types/Cargo.toml
/tonic/tonic-types/src/generated/types_fds.rs
/tonic/tonic-types/src/lib.rs
/tonic/tonic-web/Cargo.toml
/tonic/tonic-web/src/call.rs
/tonic/tonic-web/src/client.rs
/tonic/tonic-web/src/layer.rs
/tonic/tonic-web/src/lib.rs
/tonic/tonic-web/src/service.rs
/tonic/tonic/Cargo.toml
/tonic/tonic/src/body.rs
/tonic/tonic/src/client/grpc.rs
/tonic/tonic/src/client/service.rs
/tonic/tonic/src/codec/decode.rs
/tonic/tonic/src/codec/encode.rs
/tonic/tonic/src/codec/mod.rs
/tonic/tonic/src/codec/prost.rs
/tonic/tonic/src/codegen.rs
/tonic/tonic/src/lib.rs
/tonic/tonic/src/metadata/key.rs
/tonic/tonic/src/metadata/map.rs
/tonic/tonic/src/metadata/value.rs
/tonic/tonic/src/server/grpc.rs
/tonic/tonic/src/service/interceptor.rs
/tonic/tonic/src/service/layered.rs
/tonic/tonic/src/service/mod.rs
/tonic/tonic/src/service/router.rs
/tonic/tonic/src/status.rs
/tonic/tonic/src/transport/channel/endpoint.rs
/tonic/tonic/src/transport/channel/mod.rs
/tonic/tonic/src/transport/channel/service/add_origin.rs
/tonic/tonic/src/transport/channel/service/connection.rs
/tonic/tonic/src/transport/channel/service/connector.rs
/tonic/tonic/src/transport/channel/service/discover.rs
/tonic/tonic/src/transport/channel/service/reconnect.rs
/tonic/tonic/src/transport/channel/service/tls.rs
/tonic/tonic/src/transport/channel/tls.rs
/tonic/tonic/src/transport/error.rs
/tonic/tonic/src/transport/server/incoming.rs
/tonic/tonic/src/transport/server/mod.rs
/tonic/tonic/src/transport/server/service/io.rs
/tonic/tonic/src/transport/server/service/recover_error.rs
/tonic/tonic/src/transport/server/service/tls.rs
/tonic/tonic/src/transport/server/tls.rs
/tonic/tonic/src/transport/service/grpc_timeout.rs
/tonic/tonic/src/transport/service/tls.rs
6d93c1d023-Sep-2024 tottoto <[email protected]>

chore: Make codegen independent from protoc (#1953)

e92b9fe105-Sep-2024 tottoto <[email protected]>

chore(ci): Add clippy job to check error (#1910)

6ec1e51e04-Sep-2024 tottoto <[email protected]>

chore(ci): Remove unnecessary protoc version lock (#1911)

78c30b4c30-Aug-2024 Casper Meijn <[email protected]>

chore: Bump msrv to 1.71.1 (#1905)


CI.yml
/tonic/.gitignore
/tonic/CHANGELOG.md
/tonic/CONTRIBUTING.md
/tonic/Cargo.toml
/tonic/README.md
/tonic/deny.toml
/tonic/examples/Cargo.toml
/tonic/examples/src/h2c/server.rs
/tonic/examples/src/reflection/server.rs
/tonic/examples/src/tls_rustls/server.rs
/tonic/interop/build.rs
/tonic/interop/src/server.rs
/tonic/tests/deprecated_methods/Cargo.toml
/tonic/tests/deprecated_methods/build.rs
/tonic/tests/deprecated_methods/proto/test.proto
/tonic/tests/deprecated_methods/src/lib.rs
/tonic/tests/deprecated_methods/tests/deprecated_methods.rs
/tonic/tests/integration_tests/tests/connection.rs
/tonic/tests/skip_debug/Cargo.toml
/tonic/tests/skip_debug/build.rs
/tonic/tests/skip_debug/proto/test.proto
/tonic/tests/skip_debug/src/lib.rs
/tonic/tests/skip_debug/tests/skip_debug.rs
/tonic/tonic-build/Cargo.toml
/tonic/tonic-build/src/client.rs
/tonic/tonic-build/src/lib.rs
/tonic/tonic-build/src/manual.rs
/tonic/tonic-build/src/prost.rs
/tonic/tonic-build/src/server.rs
/tonic/tonic-health/Cargo.toml
/tonic/tonic-health/src/generated/grpc_health_v1.rs
/tonic/tonic-health/src/lib.rs
/tonic/tonic-reflection/Cargo.toml
/tonic/tonic-reflection/src/generated/grpc_reflection_v1.rs
/tonic/tonic-reflection/src/generated/grpc_reflection_v1alpha.rs
/tonic/tonic-reflection/src/lib.rs
/tonic/tonic-reflection/src/server/mod.rs
/tonic/tonic-reflection/src/server/v1.rs
/tonic/tonic-reflection/src/server/v1alpha.rs
/tonic/tonic-reflection/tests/server.rs
/tonic/tonic-reflection/tests/versions.rs
/tonic/tonic-types/Cargo.toml
/tonic/tonic-types/src/lib.rs
/tonic/tonic-types/src/richer_error/std_messages/retry_info.rs
/tonic/tonic-web/Cargo.toml
/tonic/tonic-web/src/call.rs
/tonic/tonic-web/src/lib.rs
/tonic/tonic-web/tests/integration/build.rs
/tonic/tonic/Cargo.toml
/tonic/tonic/src/codec/compression.rs
/tonic/tonic/src/codec/mod.rs
/tonic/tonic/src/codec/prost.rs
/tonic/tonic/src/lib.rs
/tonic/tonic/src/service/router.rs
/tonic/tonic/src/transport/channel/endpoint.rs
/tonic/tonic/src/transport/channel/service/tls.rs
/tonic/tonic/src/transport/channel/tls.rs
/tonic/tonic/src/transport/server/incoming.rs
/tonic/tonic/src/transport/server/mod.rs
e5a36db404-Aug-2024 tottoto <[email protected]>

chore: Update to nightly-2024-08-04 on udeps job (#1845)

85045c7404-Aug-2024 tottoto <[email protected]>

chore: Check udeps only on ubuntu (#1844)

468f1d9d03-Aug-2024 tottoto <[email protected]>

chore: Add external types checking (#1842)

f123d47703-Aug-2024 tottoto <[email protected]>

chore(ci): Add semver checking (#1836)

90f8734602-Aug-2024 tottoto <[email protected]>

chore: Update to EmbarkStudios/cargo-deny-action@v2 (#1830)

b1734b0119-Jul-2024 tottoto <[email protected]>

chore(ci): Remove unused protoc (#1809)


CI.yml
/tonic/CHANGELOG.md
/tonic/examples/Cargo.toml
/tonic/examples/helloworld-tutorial.md
/tonic/examples/routeguide-tutorial.md
/tonic/examples/src/authentication/server.rs
/tonic/examples/src/dynamic/server.rs
/tonic/examples/src/h2c/server.rs
/tonic/examples/src/multiplex/server.rs
/tonic/examples/src/richer-error/server.rs
/tonic/examples/src/richer-error/server_vec.rs
/tonic/examples/src/routeguide/server.rs
/tonic/examples/src/streaming/server.rs
/tonic/examples/src/tls/server.rs
/tonic/examples/src/tls_client_auth/server.rs
/tonic/examples/src/tls_rustls/client.rs
/tonic/examples/src/tls_rustls/server.rs
/tonic/examples/src/tower/server.rs
/tonic/interop/Cargo.toml
/tonic/interop/src/server.rs
/tonic/tests/ambiguous_methods/Cargo.toml
/tonic/tests/compression/Cargo.toml
/tonic/tests/default_stubs/Cargo.toml
/tonic/tests/disable_comments/Cargo.toml
/tonic/tests/extern_path/my_application/Cargo.toml
/tonic/tests/extern_path/uuid/Cargo.toml
/tonic/tests/included_service/Cargo.toml
/tonic/tests/integration_tests/Cargo.toml
/tonic/tests/integration_tests/tests/routes_builder.rs
/tonic/tests/integration_tests/tests/status.rs
/tonic/tests/root-crate-path/Cargo.toml
/tonic/tests/same_name/Cargo.toml
/tonic/tests/service_named_result/Cargo.toml
/tonic/tests/service_named_service/Cargo.toml
/tonic/tests/stream_conflict/Cargo.toml
/tonic/tests/use_arc_self/Cargo.toml
/tonic/tests/wellknown-compiled/Cargo.toml
/tonic/tests/wellknown/Cargo.toml
/tonic/tonic-build/Cargo.toml
/tonic/tonic-build/src/lib.rs
/tonic/tonic-build/src/prost.rs
/tonic/tonic-health/Cargo.toml
/tonic/tonic-health/src/generated/grpc_health_v1.rs
/tonic/tonic-health/src/lib.rs
/tonic/tonic-health/src/server.rs
/tonic/tonic-reflection/Cargo.toml
/tonic/tonic-reflection/src/lib.rs
/tonic/tonic-reflection/src/server/mod.rs
/tonic/tonic-reflection/src/server/v1.rs
/tonic/tonic-types/Cargo.toml
/tonic/tonic-types/src/generated/google_rpc.rs
/tonic/tonic-types/src/lib.rs
/tonic/tonic-web/Cargo.toml
/tonic/tonic-web/src/call.rs
/tonic/tonic-web/src/client.rs
/tonic/tonic-web/src/layer.rs
/tonic/tonic-web/src/lib.rs
/tonic/tonic-web/tests/integration/Cargo.toml
/tonic/tonic/Cargo.toml
/tonic/tonic/src/body.rs
/tonic/tonic/src/codec/compression.rs
/tonic/tonic/src/codec/decode.rs
/tonic/tonic/src/codec/encode.rs
/tonic/tonic/src/codec/mod.rs
/tonic/tonic/src/lib.rs
/tonic/tonic/src/metadata/key.rs
/tonic/tonic/src/metadata/value.rs
/tonic/tonic/src/request.rs
/tonic/tonic/src/response.rs
/tonic/tonic/src/server/grpc.rs
/tonic/tonic/src/service/interceptor.rs
/tonic/tonic/src/service/mod.rs
/tonic/tonic/src/service/router.rs
/tonic/tonic/src/transport/channel/endpoint.rs
/tonic/tonic/src/transport/channel/mod.rs
/tonic/tonic/src/transport/channel/service/connection.rs
/tonic/tonic/src/transport/channel/service/connector.rs
/tonic/tonic/src/transport/channel/service/reconnect.rs
/tonic/tonic/src/transport/channel/service/tls.rs
/tonic/tonic/src/transport/channel/tls.rs
/tonic/tonic/src/transport/mod.rs
/tonic/tonic/src/transport/server/conn.rs
/tonic/tonic/src/transport/server/incoming.rs
/tonic/tonic/src/transport/server/mod.rs
/tonic/tonic/src/transport/server/service/io.rs
/tonic/tonic/src/transport/server/service/mod.rs
/tonic/tonic/src/transport/server/service/recover_error.rs
/tonic/tonic/src/transport/server/service/tls.rs
/tonic/tonic/src/transport/server/unix.rs
654289fd20-Jun-2024 tottoto <[email protected]>

feat(transport): Make transport server and channel independent (#1630)

* feat(transport): Make transport server and channel independent

* chore(channel): Move BoxFuture to channel module

* chore(t

feat(transport): Make transport server and channel independent (#1630)

* feat(transport): Make transport server and channel independent

* chore(channel): Move BoxFuture to channel module

* chore(tls): Move server part of tls service to server module

* chore(server): Move io service to server module

show more ...

88c83def19-Jun-2024 Lucio Franco <[email protected]>

chore: fix merge queue (#1735)

* chore: fix merge queue

* run codegen


CI.yml
/tonic/deny.toml
/tonic/examples/Cargo.toml
/tonic/examples/src/grpc-web/client.rs
/tonic/examples/src/h2c/client.rs
/tonic/examples/src/h2c/server.rs
/tonic/examples/src/interceptor/server.rs
/tonic/examples/src/mock/mock.rs
/tonic/examples/src/tls_rustls/client.rs
/tonic/examples/src/tls_rustls/server.rs
/tonic/examples/src/tower/client.rs
/tonic/examples/src/tower/server.rs
/tonic/examples/src/uds/client.rs
/tonic/interop/Cargo.toml
/tonic/interop/src/server.rs
/tonic/tests/compression/Cargo.toml
/tonic/tests/compression/src/util.rs
/tonic/tests/integration_tests/Cargo.toml
/tonic/tests/integration_tests/tests/complex_tower_middleware.rs
/tonic/tests/integration_tests/tests/connect_info.rs
/tonic/tests/integration_tests/tests/extensions.rs
/tonic/tests/integration_tests/tests/http2_keep_alive.rs
/tonic/tests/integration_tests/tests/max_message_size.rs
/tonic/tests/integration_tests/tests/origin.rs
/tonic/tests/integration_tests/tests/status.rs
/tonic/tonic-build/src/server.rs
/tonic/tonic-health/src/generated/grpc_health_v1.rs
/tonic/tonic-reflection/src/generated/grpc_reflection_v1.rs
/tonic/tonic-reflection/src/generated/grpc_reflection_v1alpha.rs
/tonic/tonic-web/Cargo.toml
/tonic/tonic-web/src/call.rs
/tonic/tonic-web/src/layer.rs
/tonic/tonic-web/src/lib.rs
/tonic/tonic-web/src/service.rs
/tonic/tonic-web/tests/integration/Cargo.toml
/tonic/tonic-web/tests/integration/tests/grpc_web.rs
/tonic/tonic/Cargo.toml
/tonic/tonic/benches/decode.rs
/tonic/tonic/src/body.rs
/tonic/tonic/src/client/grpc.rs
/tonic/tonic/src/codec/decode.rs
/tonic/tonic/src/codec/encode.rs
/tonic/tonic/src/codec/prost.rs
/tonic/tonic/src/extensions.rs
/tonic/tonic/src/lib.rs
/tonic/tonic/src/metadata/mod.rs
/tonic/tonic/src/request.rs
/tonic/tonic/src/response.rs
/tonic/tonic/src/server/grpc.rs
/tonic/tonic/src/service/interceptor.rs
/tonic/tonic/src/service/mod.rs
/tonic/tonic/src/service/router.rs
/tonic/tonic/src/status.rs
/tonic/tonic/src/transport/channel/endpoint.rs
/tonic/tonic/src/transport/channel/mod.rs
/tonic/tonic/src/transport/channel/service/add_origin.rs
/tonic/tonic/src/transport/channel/service/connection.rs
/tonic/tonic/src/transport/channel/service/connector.rs
/tonic/tonic/src/transport/channel/service/discover.rs
/tonic/tonic/src/transport/channel/service/executor.rs
/tonic/tonic/src/transport/channel/service/io.rs
/tonic/tonic/src/transport/channel/service/mod.rs
/tonic/tonic/src/transport/channel/service/reconnect.rs
/tonic/tonic/src/transport/channel/service/tls.rs
/tonic/tonic/src/transport/channel/service/user_agent.rs
/tonic/tonic/src/transport/channel/tls.rs
/tonic/tonic/src/transport/error.rs
/tonic/tonic/src/transport/mod.rs
/tonic/tonic/src/transport/server/conn.rs
/tonic/tonic/src/transport/server/incoming.rs
/tonic/tonic/src/transport/server/mod.rs
/tonic/tonic/src/transport/server/recover_error.rs
/tonic/tonic/src/transport/service/io.rs
/tonic/tonic/src/transport/service/mod.rs
/tonic/tonic/src/transport/service/tls.rs
dfa0893210-Jun-2024 tottoto <[email protected]>

chore: Use cargo-no-dev-deps to check msrv (#1570)

2f2f3c8526-May-2024 Alex Rudy <[email protected]>

Bump nightly to 2024-04-16 (#1709)

Upgrading to hyper>=1 will reqiure that we upgrade axum to >= 0.7. Bumping nightly is required to support axum >= 0.7 on nightly, since it uses features not stabil

Bump nightly to 2024-04-16 (#1709)

Upgrading to hyper>=1 will reqiure that we upgrade axum to >= 0.7. Bumping nightly is required to support axum >= 0.7 on nightly, since it uses features not stabilized before this date. This is in turn reqiured to run `cargo udeps` against tonic and associated crates.

show more ...

1234