Files
tonic/Cargo.toml
T
Juan AlvarezandGitHub 8084f4ea26 chore(tonic-web): include crate in top-level workspace (#648)
This PR adds the tonic-web crate to tonic's workspace members. 
Unit and integration tests should now run as part of CI runs.
2021-06-03 11:48:53 -05:00

28 lines
543 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",
"tonic-web/tests/integration"
]