1
Fork 0
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:
Kevin Amado 2022-02-03 21:00:05 -05:00
parent 955e82573f
commit fea30eeef9
No known key found for this signature in database
GPG key ID: FFF341057F503148
2 changed files with 12 additions and 3 deletions

View file

@ -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"

View file

@ -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)
} }