-
Notifications
You must be signed in to change notification settings - Fork 528
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Add TOML validation with
taplo
(#1034)
Co-authored-by: Casper Meijn <[email protected]>
- Loading branch information
1 parent
a53ad51
commit 6914543
Showing
12 changed files
with
40 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
too-many-arguments-threshold=8 | ||
too-many-arguments-threshold = 8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
name = "conformance" | ||
version = "0.0.0" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
publish = false | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
name = "fuzz" | ||
version = "0.0.0" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
publish = false | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,10 @@ | |
name = "prost-build" | ||
version = "0.12.4" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Lucio Franco <[email protected]>", | ||
"Casper Meijn <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
"Dan Burkert <[email protected]>", | ||
"Lucio Franco <[email protected]>", | ||
"Casper Meijn <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/tokio-rs/prost" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,10 @@ | |
name = "prost-derive" | ||
version = "0.12.4" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Lucio Franco <[email protected]>", | ||
"Casper Meijn <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
"Dan Burkert <[email protected]>", | ||
"Lucio Franco <[email protected]>", | ||
"Casper Meijn <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/tokio-rs/prost" | ||
|
@@ -23,4 +23,4 @@ anyhow = "1.0.1" | |
itertools = { version = ">=0.10, <=0.12", default-features = false, features = ["use_alloc"] } | ||
proc-macro2 = "1" | ||
quote = "1" | ||
syn = { version = "2", features = [ "extra-traits" ] } | ||
syn = { version = "2", features = ["extra-traits"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,10 @@ | |
name = "prost-types" | ||
version = "0.12.4" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Lucio Franco <[email protected]>", | ||
"Casper Meijn <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
"Dan Burkert <[email protected]>", | ||
"Lucio Franco <[email protected]>", | ||
"Casper Meijn <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/tokio-rs/prost" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
name = "protobuf" | ||
version = "0.0.0" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
publish = false | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[formatting] | ||
inline_table_expand = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
name = "tests-2015" | ||
version = "0.0.0" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
publish = false | ||
edition = "2015" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
name = "tests-no-std" | ||
version = "0.0.0" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
publish = false | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
name = "tests" | ||
version = "0.0.0" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
publish = false | ||
edition = "2018" | ||
|