1[workspace] 2members = [ 3 "tonic", 4 "tonic-build", 5 "tonic-health", 6 "tonic-types", 7 "tonic-reflection", 8 "tonic-web", # Non-published crates 9 "examples", 10 "codegen", 11 "interop", # Tests 12 "tests/disable_comments", 13 "tests/included_service", 14 "tests/same_name", 15 "tests/service_named_service", 16 "tests/wellknown", 17 "tests/wellknown-compiled", 18 "tests/extern_path/uuid", 19 "tests/ambiguous_methods", 20 "tests/extern_path/my_application", 21 "tests/integration_tests", 22 "tests/stream_conflict", 23 "tests/root-crate-path", 24 "tests/compression", 25 "tests/web", 26 "tests/service_named_result", 27 "tests/use_arc_self", 28 "tests/default_stubs", 29 "tests/deprecated_methods", 30 "tests/skip_debug", 31] 32resolver = "2" 33 34[workspace.package] 35rust-version = "1.75" 36 37[workspace.lints.rust] 38missing_debug_implementations = "warn" 39missing_docs = "warn" 40rust_2018_idioms = "warn" 41unreachable_pub = "warn" 42 43[workspace.lints.rustdoc] 44broken_intra_doc_links = "deny" 45