diff --git a/Cargo.toml b/Cargo.toml index 2087a721..495a600b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ anyhow = "1.0.71" thiserror = "1" # CLI -clap = { version = "4.2.4", features = ["derive"] } +clap = { version = "4.4.18", features = ["derive"] } dirs = "5.0.1" # Testing diff --git a/README.md b/README.md index c60893fe..bc57140f 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,8 @@ A library provides clients that implement the `XrpcClient` defined in [atrium-xr ### [`atrium-cli`](./atrium-cli/) +[![](https://img.shields.io/crates/v/atrium-cli)](https://crates.io/crates/atrium-cli) + A command-line app using this API library. ## Code generation diff --git a/atrium-cli/Cargo.toml b/atrium-cli/Cargo.toml index 88011fdf..642eebad 100644 --- a/atrium-cli/Cargo.toml +++ b/atrium-cli/Cargo.toml @@ -20,3 +20,7 @@ dirs.workspace = true serde.workspace = true serde_json.workspace = true tokio = { workspace = true, features = ["full"] } + +[[bin]] +name = "atrium-cli" +path = "src/bin/main.rs" diff --git a/atrium-cli/README.md b/atrium-cli/README.md index 61f87633..2bee3656 100644 --- a/atrium-cli/README.md +++ b/atrium-cli/README.md @@ -1,5 +1,7 @@ # ATrium CLI +[![](https://img.shields.io/crates/v/atrium-cli)](https://crates.io/crates/atrium-cli) + CLI application for AT Protocol using ATrium API ``` diff --git a/lexicon/Cargo.toml b/lexicon/Cargo.toml index 427bb24a..14a5fc9f 100644 --- a/lexicon/Cargo.toml +++ b/lexicon/Cargo.toml @@ -29,4 +29,4 @@ quote = "1.0.26" syn = { version = "2.0.15", features = ["full"] } # CLI -clap = { version = "4.2.4", features = ["derive"] } +clap = { version = "4.4.18", features = ["derive"] }