Skip to content

Commit

Permalink
Merge pull request #115 from sugyan/fix/cli
Browse files Browse the repository at this point in the history
Fix bin.name for atrium-cli
  • Loading branch information
sugyan authored Feb 21, 2024
2 parents b5254e7 + f55a7cd commit 78005f4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions atrium-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 2 additions & 0 deletions atrium-cli/README.md
Original file line number Diff line number Diff line change
@@ -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

```
Expand Down
2 changes: 1 addition & 1 deletion lexicon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

0 comments on commit 78005f4

Please sign in to comment.