-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
53 lines (47 loc) · 1.22 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "oidc-cli"
version = "0.4.0"
edition = "2021"
description = "A command line tool to work with OIDC tokens"
authors = ["Jens Reimann <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/ctron/oidc-cli"
categories = ["command-line-utilities", "authentication"]
keywords = ["oidc", "cli"]
readme = "README.md"
# based on clap
rust-version = "1.74"
[[bin]]
name = "oidc"
path = "src/main.rs"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/oidc-{ target }{ binary-ext }"
pkg-fmt = "bin"
[dependencies]
actix-web = { version = "4", features = ["openssl"] }
anyhow = "1"
biscuit = "0.7"
chrono = "0.4"
clap = { version = "4", features = ["derive", "env"] }
colored_json = "5"
comfy-table = "7"
directories = "5"
humantime = "2"
log = "0.4"
num-traits = "0.2"
open = "5"
openid = "0.15"
pretty-hex = "0.4.1"
reqwest = "0.12"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
simplelog = "0.12"
time = { version = "0.3", features = ["serde-well-known", "formatting"] }
tokio = { version = "1.36", features = ["full"] }
url = "2"
openssl = "0.10" # transient dependency, required for vendoring
[features]
vendored = [
"openssl/vendored"
]