mirror of
https://github.com/RGBCube/alejandra
synced 2025-08-01 04:57:44 +00:00
feat: made with love by
This commit is contained in:
parent
955e82573f
commit
fea30eeef9
2 changed files with 12 additions and 3 deletions
|
@ -1,14 +1,12 @@
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = "*"
|
clap = "*"
|
||||||
|
indoc = "*"
|
||||||
rand = "*"
|
rand = "*"
|
||||||
rayon = "*"
|
rayon = "*"
|
||||||
rnix = "*"
|
rnix = "*"
|
||||||
rowan = "*"
|
rowan = "*"
|
||||||
walkdir = "*"
|
walkdir = "*"
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
indoc = "*"
|
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
authors = ["Kevin Amado <kamadorueda@gmail.com>"]
|
authors = ["Kevin Amado <kamadorueda@gmail.com>"]
|
||||||
description = "The Uncompromising Nix Code Formatter"
|
description = "The Uncompromising Nix Code Formatter"
|
||||||
|
|
11
src/cli.rs
11
src/cli.rs
|
@ -22,5 +22,16 @@ pub fn parse(args: Vec<String>) -> clap::ArgMatches {
|
||||||
.multiple_values(true),
|
.multiple_values(true),
|
||||||
)
|
)
|
||||||
.term_width(80)
|
.term_width(80)
|
||||||
|
.after_help(indoc::indoc!(
|
||||||
|
"
|
||||||
|
Created with love by:
|
||||||
|
- Kevin Amado ~ @kamadorueda on GitHub, matrix.org and Gmail.
|
||||||
|
- Thomas Bereknyei ~ @tomberek on GitHub and matrix.org.
|
||||||
|
|
||||||
|
With contributions from:
|
||||||
|
- David Arnold ~ @blaggacao on GitHub and matrix.org.
|
||||||
|
- Mr Hedgehog ~ @ModdedGamers on GitHub.
|
||||||
|
"
|
||||||
|
))
|
||||||
.get_matches_from(args)
|
.get_matches_from(args)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue