[package]
edition = "2024"
rust-version = "1.94.1"
name = "ez-token"
version = "0.1.0"
authors = ["Philipp Schugt<pschugt@mailbox.org>"]
build = false
exclude = [
".github",
".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tool for generating OAuth2 access tokens via PKCE and Client Credentials for Microsoft Entra ID and Auth0"
homepage = "https://github.com/pschugt/ez-token"
documentation = "https://docs.rs/ez-token"
readme = "README.md"
keywords = [
"oauth2",
"token",
"cli",
"auth0",
"azure",
]
categories = [
"authentication",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/pschugt/ez-token"
[lib]
name = "ez_token"
path = "src/lib.rs"
[[bin]]
name = "ez-token"
path = "src/main.rs"
[dependencies.arboard]
version = "3.6.1"
[dependencies.axum]
version = "0.8.8"
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
[dependencies.confy]
version = "2.0.0"
[dependencies.console]
version = "0.16.3"
[dependencies.dialoguer]
version = "0.12"
features = ["history"]
[dependencies.indicatif]
version = "0.18.4"
[dependencies.miette]
version = "7.6.0"
features = ["fancy"]
[dependencies.oauth2]
version = "5.0.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.tokio]
version = "1"
features = [
"full",
"macros",
"rt",
"time",
"test-util",
]
[dependencies.webbrowser]
version = "1.2.0"