You've already forked lint-policy
Update for rust 1.98
This commit is contained in:
Generated
+2
-2
@@ -106,9 +106,9 @@ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "either"
|
name = "either"
|
||||||
version = "1.17.0"
|
version = "1.18.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
|
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "heck"
|
name = "heck"
|
||||||
|
|||||||
+6
-3
@@ -109,7 +109,6 @@ fn-params-excessive-bools = "allow"
|
|||||||
fn-to-numeric-cast-any = "warn"
|
fn-to-numeric-cast-any = "warn"
|
||||||
format-collect = "warn"
|
format-collect = "warn"
|
||||||
format-push-string = "warn"
|
format-push-string = "warn"
|
||||||
from-iter-instead-of-collect = "warn"
|
|
||||||
future-not-send = "warn"
|
future-not-send = "warn"
|
||||||
get-unwrap = "warn"
|
get-unwrap = "warn"
|
||||||
host-endian-bytes = "allow"
|
host-endian-bytes = "allow"
|
||||||
@@ -336,6 +335,7 @@ unreadable-literal = "warn"
|
|||||||
unsafe-derive-deserialize = "warn"
|
unsafe-derive-deserialize = "warn"
|
||||||
unseparated-literal-suffix = "warn"
|
unseparated-literal-suffix = "warn"
|
||||||
unused-async = "warn"
|
unused-async = "warn"
|
||||||
|
unused-async-trait-impl = "warn"
|
||||||
unused-peekable = "warn"
|
unused-peekable = "warn"
|
||||||
unused-result-ok = "warn"
|
unused-result-ok = "warn"
|
||||||
unused-rounding = "warn"
|
unused-rounding = "warn"
|
||||||
@@ -354,6 +354,7 @@ volatile-composites = "warn"
|
|||||||
while-float = "warn"
|
while-float = "warn"
|
||||||
wildcard-enum-match-arm = "warn"
|
wildcard-enum-match-arm = "warn"
|
||||||
wildcard-imports = "warn"
|
wildcard-imports = "warn"
|
||||||
|
with-capacity-zero = "warn"
|
||||||
zero-sized-map-values = "warn"
|
zero-sized-map-values = "warn"
|
||||||
|
|
||||||
[workspace.lints.rust]
|
[workspace.lints.rust]
|
||||||
@@ -380,6 +381,7 @@ bad-asm-style = "warn"
|
|||||||
binary-asm-labels = "deny"
|
binary-asm-labels = "deny"
|
||||||
bindings-with-variant-name = "deny"
|
bindings-with-variant-name = "deny"
|
||||||
break-with-label-and-loop = "warn"
|
break-with-label-and-loop = "warn"
|
||||||
|
c-void-returns = "warn"
|
||||||
clashing-extern-declarations = "warn"
|
clashing-extern-declarations = "warn"
|
||||||
closure-returning-async-block = "warn"
|
closure-returning-async-block = "warn"
|
||||||
confusable-idents = "warn"
|
confusable-idents = "warn"
|
||||||
@@ -428,6 +430,7 @@ invalid-from-utf8-unchecked = "deny"
|
|||||||
invalid-nan-comparisons = "warn"
|
invalid-nan-comparisons = "warn"
|
||||||
invalid-null-arguments = "deny"
|
invalid-null-arguments = "deny"
|
||||||
invalid-reference-casting = "deny"
|
invalid-reference-casting = "deny"
|
||||||
|
invalid-runtime-symbol-definitions = "deny"
|
||||||
invalid-value = "warn"
|
invalid-value = "warn"
|
||||||
irrefutable-let-patterns = "warn"
|
irrefutable-let-patterns = "warn"
|
||||||
large-assignments = "warn"
|
large-assignments = "warn"
|
||||||
@@ -467,6 +470,7 @@ single-use-lifetimes = "warn"
|
|||||||
special-module-name = "warn"
|
special-module-name = "warn"
|
||||||
stable-features = "warn"
|
stable-features = "warn"
|
||||||
suspicious-double-ref-op = "warn"
|
suspicious-double-ref-op = "warn"
|
||||||
|
suspicious-runtime-symbol-definitions = "warn"
|
||||||
text-direction-codepoint-in-comment = "deny"
|
text-direction-codepoint-in-comment = "deny"
|
||||||
text-direction-codepoint-in-literal = "deny"
|
text-direction-codepoint-in-literal = "deny"
|
||||||
trivial-bounds = "warn"
|
trivial-bounds = "warn"
|
||||||
@@ -508,8 +512,7 @@ while-true = "warn"
|
|||||||
# unstable lints
|
# unstable lints
|
||||||
# default-overrides-default-fields = "deny"
|
# default-overrides-default-fields = "deny"
|
||||||
# deprecated-llvm-intrinsic = "warn"
|
# deprecated-llvm-intrinsic = "warn"
|
||||||
# fuzzy-provenance-casts = "deny"
|
# implicit-provenance-casts = "deny"
|
||||||
# lossy-provenance-casts = "deny"
|
|
||||||
# multiple-supertrait-upcastable = "warn"
|
# multiple-supertrait-upcastable = "warn"
|
||||||
# must-not-suspend = "warn"
|
# must-not-suspend = "warn"
|
||||||
# non-exhaustive-omitted-patterns = "warn"
|
# non-exhaustive-omitted-patterns = "warn"
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ Run the full validation suite before committing:
|
|||||||
|
|
||||||
```sh
|
```sh
|
||||||
just all
|
just all
|
||||||
|
just install
|
||||||
```
|
```
|
||||||
|
|
||||||
##### Publish
|
##### Publish
|
||||||
|
|||||||
+1081
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -1,2 +1,2 @@
|
|||||||
[toolchain]
|
[toolchain]
|
||||||
channel = "1.97"
|
channel = "1.98"
|
||||||
|
|||||||
Reference in New Issue
Block a user