* Initial compression support * Support configuring compression on `Server` * Minor clean up * Test that compression is actually happening * Clean up some todos * channels compressing requests * Move compression to be on the codecs * Test sending compressed request to server that doesn't support it * Clean up a bit * Compress server streams * Compress client streams * Bidirectional streaming compression * Handle receiving unsupported encoding * Clean up * Add note to future self * Support disabling compression for individual responses * Add docs * Add compression examples * Disable compression behind feature flag * Add some docs * Make flate2 optional dependency * Fix docs wording * Format * Reply with which encodings are supported * Convert tests to use mocked io * Fix lints * Use separate counters * Don't make a long stream * Address review feedback
29 lines
568 B
TOML
29 lines
568 B
TOML
[workspace]
|
|
members = [
|
|
"tonic",
|
|
"tonic-build",
|
|
"tonic-health",
|
|
"tonic-types",
|
|
"tonic-reflection",
|
|
"tonic-web",
|
|
|
|
# Non-published crates
|
|
"examples",
|
|
"interop",
|
|
|
|
# Tests
|
|
"tests/included_service",
|
|
"tests/same_name",
|
|
"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"
|
|
]
|
|
|