Преглед изворни кода

fix: fix rustdocs-args ordering in taplo to -D warnings

This fixes the current rustdoc build error by correcting the ordering of
`rustdoc-args` to `-D warnings`. Additionally, this also removes the
`recorder_arrays` field (defaults to false) so that the order is not
modified, which is what caused the error in the first place.
tyrone-wu пре 10 месеци
родитељ
комит
5e13283f59
2 измењених фајлова са 1 додато и 2 уклоњено
  1. 0 1
      .taplo.toml
  2. 1 1
      aya/Cargo.toml

+ 0 - 1
.taplo.toml

@@ -2,4 +2,3 @@
 
 [rule.formatting]
 indent_string = "    "
-reorder_arrays = true

+ 1 - 1
aya/Cargo.toml

@@ -35,4 +35,4 @@ async_std = ["dep:async-io"]
 
 [package.metadata.docs.rs]
 all-features = true
-rustdoc-args = ["--cfg", "-D", "docsrs", "warnings"]
+rustdoc-args = ["--cfg", "docsrs", "-D", "warnings"]