forked from biscuit-auth/biscuit-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 843 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "biscuit-cli"
version = "0.4.1"
description = "a CLI to manipulate biscuit tokens"
authors = ["Clement Delafargue <[email protected]>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/biscuit-auth/biscuit-cli"
homepage = "https://www.biscuitsec.org"
readme = "README.md"
[[bin]]
name = "biscuit"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
atty = "0.2.14"
biscuit-auth = { version = "4.0.0", features = ["serde-error"] }
clap = { version = "^3.0", features = ["color", "derive"] }
chrono = "^0.4"
hex = "0.4.3"
parse_duration = "^2.1"
tempfile = "3.2.0"
shell-words = "^1.0.0"
thiserror = "1.0.32"
anyhow = "1.0.61"
time = "0.3.13"
serde_json = "1.0.103"
serde = { version = "1.0.173", features = ["derive"] }