forked from pantsbuild/pants
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply taplo to the repository (pantsbuild#18998)
Per the suggestion from @thejcannon, I've turned the taplo formatter onto pants itself 😄 Happy to take suggestions for formatting standards, if anyone wants to bikeshed. --------- Co-authored-by: Andreas Stenius <[email protected]> Co-authored-by: Joshua Cannon <[email protected]>
- Loading branch information
1 parent
4d8508b
commit e0ef5b8
Showing
40 changed files
with
81 additions
and
78 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[formatting] | ||
column_width = 100 |
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
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "engine" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
# NOTE: See `src/rust/engine/.cargo/config` for `--cfg` flags enabled for these crates. | ||
|
@@ -60,7 +60,7 @@ members = [ | |
"tryfuture", | ||
"ui", | ||
"watch", | ||
"workunit_store" | ||
"workunit_store", | ||
] | ||
|
||
# These are the packages which are built/tested when no special selector flags are passed to cargo. | ||
|
@@ -104,7 +104,7 @@ default-members = [ | |
"tryfuture", | ||
"ui", | ||
"watch", | ||
"workunit_store" | ||
"workunit_store", | ||
] | ||
|
||
[lib] | ||
|
@@ -129,7 +129,10 @@ cache = { path = "cache" } | |
concrete_time = { path = "concrete_time" } | ||
crossbeam-channel = "0.5" | ||
# TODO: Waiting on https://github.com/Aeledfyr/deepsize/pull/{30,31,32}. | ||
deepsize = { git = "https://github.com/stuhood/deepsize.git", rev = "5c8bee5443fcafe4aaa9274490d354412d0955c1", features=["internment", "smallvec"] } | ||
deepsize = { git = "https://github.com/stuhood/deepsize.git", rev = "5c8bee5443fcafe4aaa9274490d354412d0955c1", features = [ | ||
"internment", | ||
"smallvec", | ||
] } | ||
dep_inference = { path = "dep_inference" } | ||
derivative = "2.2" | ||
async-oncecell = "0.2" | ||
|
@@ -159,7 +162,7 @@ rand = "0.8" | |
regex = "1" | ||
reqwest = { version = "0.11", default_features = false, features = ["stream", "rustls-tls"] } | ||
rule_graph = { path = "rule_graph" } | ||
smallvec = { version = "1", features=["union"] } | ||
smallvec = { version = "1", features = ["union"] } | ||
stdio = { path = "stdio" } | ||
store = { path = "fs/store" } | ||
serde_json = "1.0" | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "address" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "async_latch" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "async_value" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,13 +2,13 @@ | |
name = "cache" | ||
version = "0.0.1" | ||
edition = "2021" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
bytes = "1.2" | ||
grpc_util = { path = "../grpc_util" } | ||
hashing = { path = "../hashing" } | ||
protos = { path = "../protos" } | ||
sharded_lmdb = { path = "../sharded_lmdb" } | ||
sharded_lmdb = { path = "../sharded_lmdb" } | ||
task_executor = { path = "../task_executor" } |
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "client" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[[bin]] | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "dep_inference" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[build-dependencies] | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "fs" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,7 +2,7 @@ | |
name = "brfs" | ||
version = "0.0.1" | ||
edition = "2021" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,7 +2,7 @@ | |
name = "fs_util" | ||
version = "0.0.1" | ||
edition = "2021" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "graph" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "grpc_util" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,7 +2,7 @@ | |
name = "hashing" | ||
version = "0.0.1" | ||
edition = "2021" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "logging" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "nailgun" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "options" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "process_execution" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
@@ -16,7 +16,9 @@ bytes = "1.2" | |
cache = { path = "../cache" } | ||
derivative = "2.2" | ||
# TODO: Waiting on https://github.com/Aeledfyr/deepsize/pull/{30,31,32}. | ||
deepsize = { git = "https://github.com/stuhood/deepsize.git", rev = "5c8bee5443fcafe4aaa9274490d354412d0955c1", features=["log"] } | ||
deepsize = { git = "https://github.com/stuhood/deepsize.git", rev = "5c8bee5443fcafe4aaa9274490d354412d0955c1", features = [ | ||
"log", | ||
] } | ||
grpc_util = { path = "../grpc_util" } | ||
fs = { path = "../fs" } | ||
futures = "0.3" | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "docker" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "pe_nailgun" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "remote" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "process_executor" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
@@ -21,5 +21,5 @@ shlex = "1.1.0" | |
store = { path = "../fs/store" } | ||
task_executor = { path = "../task_executor" } | ||
tokio = { version = "1.28", features = ["rt-multi-thread", "macros"] } | ||
workunit_store = { path = "../workunit_store"} | ||
remote = { path = "../process_execution/remote"} | ||
workunit_store = { path = "../workunit_store" } | ||
remote = { path = "../process_execution/remote" } |
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "protos" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,18 +2,21 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "rule_graph" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
# TODO: Waiting on https://github.com/Aeledfyr/deepsize/pull/{30,31,32}. | ||
deepsize = { git = "https://github.com/stuhood/deepsize.git", rev = "5c8bee5443fcafe4aaa9274490d354412d0955c1", features=["internment", "smallvec"] } | ||
deepsize = { git = "https://github.com/stuhood/deepsize.git", rev = "5c8bee5443fcafe4aaa9274490d354412d0955c1", features = [ | ||
"internment", | ||
"smallvec", | ||
] } | ||
fnv = "1.0.5" | ||
indexmap = "1.9" | ||
internment = "0.6" | ||
log = "0.4" | ||
petgraph = "0.6" | ||
smallvec = { version = "1", features=["union"] } | ||
smallvec = { version = "1", features = ["union"] } | ||
|
||
[dev-dependencies] | ||
env_logger = "0.10.0" |
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,7 +1,7 @@ | ||
[package] | ||
name = "sharded_lmdb" | ||
version = "0.0.1" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "stdio" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
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,7 +2,7 @@ | |
version = "0.0.1" | ||
edition = "2021" | ||
name = "task_executor" | ||
authors = [ "Pants Build <[email protected]>" ] | ||
authors = ["Pants Build <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
|
Oops, something went wrong.