Skip to content

Commit

Permalink
Merge pull request #23 from biscuit-auth/bump-biscuit-dependency
Browse files Browse the repository at this point in the history
Bump biscuit dependency
  • Loading branch information
divarvel authored Mar 28, 2022
2 parents e0187a9 + abe4b39 commit 2d61272
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 9 deletions.
36 changes: 31 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "biscuit-cli"
version = "0.1.0"
version = "0.2.0"
description = "a CLI to manipulate biscuit tokens"
authors = ["Clement Delafargue <[email protected]>"]
edition = "2018"
Expand All @@ -17,7 +17,7 @@ path = "src/main.rs"

[dependencies]
atty = "0.2.14"
biscuit-auth = "2.0.0"
biscuit-auth = "2.1.0"
clap = { version = "^3.0", features = ["color", "derive"] }
chrono = "^0.4"
hex = "0.4.3"
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ This package provides a Command Line Interface allowing to manipulate [biscuit](

## Installation

This package is not published on [crates.io](https://crates.io) yet, so you need to build it locally:
You can install [biscuit-cli](https://crates.io/crates/biscuit-cli) with Cargo:

```
cargo install biscuit-cli
```

### From source

```
git clone https://github.com/biscuit-auth/biscuit-cli.git
Expand Down
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::input::*;

/// biscuit creation and inspection CLI. Run `biscuit --help` to see what's available.
#[derive(Parser)]
#[clap(version = "1.0", author = "Clément D. <[email protected]>")]
#[clap(version = "0.2.0", author = "Clément D. <[email protected]>")]
pub struct Opts {
#[clap(subcommand)]
pub subcmd: SubCommand,
Expand Down

0 comments on commit 2d61272

Please sign in to comment.