History log of /tonic/examples/ (Results 1 – 25 of 202)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
f07abb2731-Jan-2025 tottoto <[email protected]>

chore(examples): Update to rand 0.9 (#2168)

970635a117-Jan-2025 tottoto <[email protected]>

chore(examples): Remove unnecessary bound (#2147)

66aaa5bb11-Jan-2025 tottoto <[email protected]>

chore: Use specific io error constructor (#2133)

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

chore(examples): Add dep prefix to tokio-stream dependency (#2119)

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

chore: Remove version and publish field from internal crate (#2113)

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

chore: Update to tokio-rustls 0.16.1 and remove rustls-pki-types from direct dependency (#2097)

1442a59d30-Nov-2024 Arjan Singh Bal <[email protected]>

Minor fix in routeguide example (#2076)

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

chore(examples): Remove redundant pattern match (#2065)

f4a879db23-Nov-2024 tottoto <[email protected]>

chore!: Remove deprecated api (#2050)

60b131d215-Nov-2024 tottoto <[email protected]>

feat: Add Body type (#2013)

1f2622fd15-Nov-2024 tottoto <[email protected]>

chore(examples): Remove unused dependency (#2039)

eb66b91414-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 ...

0846e6ed07-Nov-2024 tottoto <[email protected]>

feat(transport): Make tower internal dependency (#1947)

* feat(channel): Add Change type to make tower internal dependency

* feat(server): Remove NamedService implementation for Either

* feat(web)

feat(transport): Make tower internal dependency (#1947)

* feat(channel): Add Change type to make tower internal dependency

* feat(server): Remove NamedService implementation for Either

* feat(web): Add CorsGrpcWebResponseFuture to make tower-http internal dependency

show more ...

ea4995eb07-Nov-2024 tottoto <[email protected]>

chore(examples): Remove timeout example (#2025)

b80428ba06-Nov-2024 tottoto <[email protected]>

chore(examples): Remove timeout from tower example (#2030)

c84e952f06-Nov-2024 tottoto <[email protected]>

chore(tls): Use rustls-pki-types crate pem api (#1971)

d40f610d22-Oct-2024 Shikhar Bhushan <[email protected]>

docs: improve comment around cloning middleware in examples (#1977)

3009cf5222-Oct-2024 tottoto <[email protected]>

chore: Start development of version 0.13 (#2014)

58345a6b17-Oct-2024 tottoto <[email protected]>

chore: Update to tower 0.5 (#1892)

7b93470b16-Oct-2024 tottoto <[email protected]>

feat(interceptor): Change InterceptorLayer constructor associated function (#2005)

1359d7ad14-Oct-2024 tottoto <[email protected]>

chore(examples): Refactor tower example (#1999)

* chore(examples): Use http crate directly in tower example

* chore(examples): Remove unused hyper-util from tower example

* chore(examples): Remove

chore(examples): Refactor tower example (#1999)

* chore(examples): Use http crate directly in tower example

* chore(examples): Remove unused hyper-util from tower example

* chore(examples): Remove BoxBody from tower example

show more ...

be4e0e7707-Oct-2024 tottoto <[email protected]>

chore: Refactor empty body constructor (#1981)

* chore: Refactor empty body constructor

* chore: Deprecate empty_body api

9b74abf103-Oct-2024 tottoto <[email protected]>

feat: Add Layered service to propagate NamedService implementation (#1966)


/tonic/.github/workflows/CI.yml
/tonic/.gitignore
/tonic/CHANGELOG.md
/tonic/CONTRIBUTING.md
/tonic/Cargo.toml
/tonic/README.md
/tonic/codegen/Cargo.toml
/tonic/codegen/src/main.rs
Cargo.toml
src/grpc-web/server.rs
/tonic/tests/skip_debug/Cargo.toml
/tonic/tests/skip_debug/build.rs
/tonic/tests/skip_debug/src/lib.rs
/tonic/tests/web/Cargo.toml
/tonic/tests/web/LICENSE
/tonic/tests/web/build.rs
/tonic/tests/web/proto/test.proto
/tonic/tests/web/src/lib.rs
/tonic/tests/web/tests/grpc.rs
/tonic/tests/web/tests/grpc_web.rs
/tonic/tonic-build/Cargo.toml
/tonic/tonic-build/src/client.rs
/tonic/tonic-build/src/lib.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/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/layer.rs
/tonic/tonic-web/src/lib.rs
/tonic/tonic-web/src/service.rs
/tonic/tonic/Cargo.toml
/tonic/tonic/src/client/grpc.rs
/tonic/tonic/src/codec/encode.rs
/tonic/tonic/src/codec/mod.rs
/tonic/tonic/src/codec/prost.rs
/tonic/tonic/src/lib.rs
/tonic/tonic/src/macros.rs
/tonic/tonic/src/metadata/map.rs
/tonic/tonic/src/request.rs
/tonic/tonic/src/response.rs
/tonic/tonic/src/server/grpc.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/mod.rs
/tonic/tonic/src/transport/channel/tls.rs
/tonic/tonic/src/transport/server/incoming.rs
5965daa804-Sep-2024 tottoto <[email protected]>

chore(doc): Replace deprecated compile with compile_protos (#1923)

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

feat(build): Rename compile method with compile_protos (#1920)


/tonic/.github/workflows/CI.yml
/tonic/.gitignore
/tonic/CHANGELOG.md
/tonic/CONTRIBUTING.md
/tonic/Cargo.toml
/tonic/README.md
/tonic/codegen/src/main.rs
build.rs
/tonic/interop/build.rs
/tonic/interop/src/server.rs
/tonic/tests/default_stubs/build.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/disable_comments/build.rs
/tonic/tests/extern_path/my_application/build.rs
/tonic/tests/root-crate-path/build.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/tests/use_arc_self/build.rs
/tonic/tests/wellknown-compiled/build.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-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-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/lib.rs
/tonic/tonic-web/tests/integration/build.rs
/tonic/tonic/Cargo.toml
/tonic/tonic/src/client/grpc.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/codec/prost.rs
/tonic/tonic/src/lib.rs
/tonic/tonic/src/metadata/map.rs
/tonic/tonic/src/server/grpc.rs
/tonic/tonic/src/service/router.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
/tonic/tonic/src/transport/service/tls.rs

123456789