diff --git a/Cargo.toml b/Cargo.toml index eb12f60..3c3d4b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,14 +1,12 @@ [dependencies] clap = "*" +indoc = "*" rand = "*" rayon = "*" rnix = "*" rowan = "*" walkdir = "*" -[dev-dependencies] -indoc = "*" - [package] authors = ["Kevin Amado "] description = "The Uncompromising Nix Code Formatter" diff --git a/src/cli.rs b/src/cli.rs index 06bd9d6..77bc668 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -22,5 +22,16 @@ pub fn parse(args: Vec) -> 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) }