4942dd4a43
This implements an option to emit `Arc<Self>` instead of `&self` in server traits. This enables implementor to reference `Self` data for indefinite duration, which may be useful for streaming requests. Fixes: #1351
29 lines
650 B
TOML
29 lines
650 B
TOML
[workspace]
|
|
members = [
|
|
"tonic",
|
|
"tonic-build",
|
|
"tonic-health",
|
|
"tonic-types",
|
|
"tonic-reflection",
|
|
"tonic-web", # Non-published crates
|
|
"examples",
|
|
"interop", # Tests
|
|
"tests/disable_comments",
|
|
"tests/included_service",
|
|
"tests/same_name",
|
|
"tests/service_named_service",
|
|
"tests/wellknown",
|
|
"tests/wellknown-compiled",
|
|
"tests/extern_path/uuid",
|
|
"tests/ambiguous_methods",
|
|
"tests/extern_path/my_application",
|
|
"tests/integration_tests",
|
|
"tests/stream_conflict",
|
|
"tests/root-crate-path",
|
|
"tests/compression",
|
|
"tonic-web/tests/integration",
|
|
"tests/service_named_result",
|
|
"tests/use_arc_self",
|
|
]
|
|
resolver = "2"
|