1+ [workspace ]
2+ members = [" macros" ]
3+
4+ [lworkspace .ints .rust ]
5+ deprecated-safe = " warn"
6+ future-incompatible = " warn"
7+ keyword-idents = " warn"
8+ let-underscore = " warn"
9+ missing-debug-implementations = " warn"
10+ missing-docs = " warn"
11+ trivial-numeric-casts = " warn"
12+ unsafe-op-in-unsafe-fn = " warn"
13+ unused = " warn"
14+
15+ [workspace .lints .clippy ]
16+ collapsible-else-if = " allow"
17+ collapsible-if = " allow"
18+ diverging-sub-expression = " allow"
19+ let-and-return = " allow"
20+ let-unit-value = " allow"
21+ module-inception = " allow"
22+ type-complexity = " allow"
23+ absolute-paths = " warn"
24+ allow-attributes = " warn"
25+ clone-on-ref-ptr = " warn"
26+ dbg-macro = " warn"
27+ derive-partial-eq-without-eq = " warn"
28+ doc-markdown = " warn"
29+ join-absolute-paths = " warn"
30+ large-enum-variant = " warn"
31+ redundant-closure-for-method-calls = " warn"
32+ unchecked-duration-subtraction = " warn"
33+ uninlined-format-args = " warn"
34+ wildcard-imports = " warn"
35+
136[package ]
237name = " test-log"
338version = " 0.2.17"
@@ -41,9 +76,6 @@ color = ["env_logger?/auto-color", "tracing-subscriber?/ansi"]
4176# versioning guarantees.
4277unstable = [" test-log-macros/unstable" ]
4378
44- [workspace ]
45- members = [" macros" ]
46-
4779[dependencies ]
4880test-log-macros = {version = " 0.2.15" , path = " macros" }
4981tracing-subscriber = {version = " 0.3.17" , default-features = false , optional = true , features = [" env-filter" , " fmt" ]}
@@ -54,3 +86,6 @@ logging = {version = "0.4.8", package = "log"}
5486test-case = {version = " 3.1" }
5587tokio = {version = " 1.0" , default-features = false , features = [" rt-multi-thread" , " macros" ]}
5688tracing = {version = " 0.1.20" }
89+
90+ [lints ]
91+ workspace = true
0 commit comments