forked from hyperium/tonic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (42 loc) · 920 Bytes
/
Cargo.toml
File metadata and controls
46 lines (42 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[workspace]
members = [
"tonic",
"tonic-build",
"tonic-health",
"tonic-protobuf",
"tonic-protobuf-build",
"tonic-types",
"tonic-reflection",
"tonic-prost",
"tonic-prost-build",
"tonic-web", # Non-published crates
"examples",
"codegen",
"grpc",
"xds-client",
"tonic-xds",
"interop", # Tests
"tests/disable_comments",
"tests/wellknown",
"tests/wellknown-compiled",
"tests/extern_path/uuid",
"tests/extern_path/my_application",
"tests/integration_tests",
"tests/compression",
"tests/compile",
"tests/web",
"tests/default_stubs",
"tests/deprecated_methods",
]
resolver = "2"
[workspace.package]
rust-version = "1.75"
[workspace.lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
rust_2018_idioms = "warn"
unreachable_pub = "warn"
[workspace.lints.clippy]
uninlined_format_args = "deny"
[workspace.lints.rustdoc]
broken_intra_doc_links = "deny"