mirror of
https://github.com/RGBCube/alejandra
synced 2025-07-30 12:07:46 +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]
|
||||
clap = "*"
|
||||
indoc = "*"
|
||||
rand = "*"
|
||||
rayon = "*"
|
||||
rnix = "*"
|
||||
rowan = "*"
|
||||
walkdir = "*"
|
||||
|
||||
[dev-dependencies]
|
||||
indoc = "*"
|
||||
|
||||
[package]
|
||||
authors = ["Kevin Amado <kamadorueda@gmail.com>"]
|
||||
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),
|
||||
)
|
||||
.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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue