add about

This commit is contained in:
Brian Hicks 2024-04-09 16:59:57 -05:00
parent ec0f9f52a5
commit e9240f4bde
No known key found for this signature in database
GPG Key ID: C4F324B9CAAB0D50
3 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,7 @@
name = "elm-duet"
version = "0.1.0"
edition = "2021"
description = "Generate Elm and TypeScript types from a single shared definition."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -54,6 +54,8 @@ Here are more things you can do with the tool:
```console
$ elm-duet --help
Generate Elm and TypeScript types from a single shared definition.
Usage: elm-duet <SOURCE>
Arguments:

View File

@ -7,7 +7,7 @@ use eyre::WrapErr;
use std::path::PathBuf;
#[derive(Debug, Parser)]
#[clap(version)]
#[clap(version, about)]
struct Cli {
/// Location of the definition file
source: PathBuf,