@@ -3,12 +3,12 @@ name = "topiary-cli"
33description  = " CLI app for Topiary, the universal code formatter." 
44categories  = [" command-line-utilities"  , " development-tools"  , " text-processing"  ]
55keywords  = [
6-   " cli"  ,
7-   " code-formatter"  ,
8-   " formatter"  ,
9-   " text"  ,
10-   " tree-sitter"  ,
11-   " utility"  ,
6+      " cli"  ,
7+      " code-formatter"  ,
8+      " formatter"  ,
9+      " text"  ,
10+      " tree-sitter"  ,
11+      " utility"  ,
1212]
1313version.workspace  = true 
1414edition.workspace  = true 
@@ -35,7 +35,12 @@ itertools = { workspace = true }
3535log  = { workspace  = true  }
3636serde  = { workspace  = true , features  = [" derive"  ] }
3737tempfile  = { workspace  = true  }
38- tokio  = { workspace  = true , features  = [" fs"  , " rt-multi-thread"  , " sync"  , " macros"  ] }
38+ tokio  = { workspace  = true , features  = [
39+     " fs"  ,
40+     " rt-multi-thread"  ,
41+     " sync"  ,
42+     " macros"  ,
43+ ] }
3944toml  = { workspace  = true  }
4045topiary-core  = { path  = " ../topiary-core"   }
4146topiary-config  = { path  = " ../topiary-config"   }
@@ -58,34 +63,37 @@ predicates = { workspace = true }
5863
5964[features ]
6065default  = [
61-   " contributed"  ,
62-   " json"  ,
63-   " nickel"  ,
64-   " ocaml"  ,
65-   " ocaml_interface"  ,
66-   " ocamllex"  ,
67-   " toml"  ,
68-   " tree_sitter_query" 
66+     " contributed"  ,
67+     " json"  ,
68+     " nickel"  ,
69+     " nix"  ,
70+     " ocaml"  ,
71+     " ocaml_interface"  ,
72+     " ocamllex"  ,
73+     " toml"  ,
74+     " tree_sitter_query"  ,
6975]
7076
7177#  Included by default
72- contributed  = [
73-   " css" 
74- ]
78+ contributed  = [" css"  ]
7579
7680#  Excluded by default
77- experimental  = [
78-   " bash"  ,
79-   " rust"  ,
80- ]
81+ experimental  = [" bash"  , " rust"  ]
8182
83+ nix  = [" topiary-config/nix"  , " topiary-queries/nix"  ]
8284bash  = [" topiary-config/bash"  , " topiary-queries/bash"  ]
8385css  = [" topiary-config/css"  , " topiary-queries/css"  ]
8486json  = [" topiary-config/json"  , " topiary-queries/json"  ]
8587nickel  = [" topiary-config/nickel"  , " topiary-queries/nickel"  ]
8688ocaml  = [" topiary-config/ocaml"  , " topiary-queries/ocaml"  ]
87- ocaml_interface  = [" topiary-config/ocaml_interface"  , " topiary-queries/ocaml_interface"  ]
89+ ocaml_interface  = [
90+     " topiary-config/ocaml_interface"  ,
91+     " topiary-queries/ocaml_interface"  ,
92+ ]
8893ocamllex  = [" topiary-config/ocamllex"  , " topiary-queries/ocamllex"  ]
8994rust  = [" topiary-config/rust"  , " topiary-queries/rust"  ]
9095toml  = [" topiary-config/toml"  , " topiary-queries/toml"  ]
91- tree_sitter_query  = [" topiary-config/tree_sitter_query"  , " topiary-queries/tree_sitter_query"  ]
96+ tree_sitter_query  = [
97+     " topiary-config/tree_sitter_query"  ,
98+     " topiary-queries/tree_sitter_query"  ,
99+ ]
0 commit comments