Some checks failed
Build and Test / Validate Setup (push) Has been cancelled
Build and Test / Build (darwin-amd64) (push) Has been cancelled
Build and Test / Build (darwin-arm64) (push) Has been cancelled
Build and Test / Build (linux-amd64) (push) Has been cancelled
Build and Test / Build (windows-amd64) (push) Has been cancelled
Build and Test / Build (linux-arm64) (push) Has been cancelled
Build and Test / Security Audit (push) Has been cancelled
Build and Test / Package Results (push) Has been cancelled
Build and Test / Quality Gate (push) Has been cancelled
44 lines
875 B
Plaintext
44 lines
875 B
Plaintext
[package]
|
|
name = "nu_plugin_auth"
|
|
version = "0.109.0"
|
|
authors = ["Jesus Perez <jesus@librecloud.online>"]
|
|
edition = "2021"
|
|
description = "Nushell plugin for provisioning authentication (JWT, MFA)"
|
|
repository = "https://github.com/provisioning/nu_plugin_auth"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
nu-plugin = "0.109.1"
|
|
nu-protocol = "0.109.1"
|
|
jsonwebtoken = "=9.3"
|
|
serde_json = "1.0"
|
|
keyring = "3.6"
|
|
rpassword = "7.4"
|
|
base64 = "0.22"
|
|
qrcode = "0.14"
|
|
chrono = "0.4"
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.12"
|
|
features = [
|
|
"json",
|
|
"rustls-tls",
|
|
"blocking",
|
|
]
|
|
default-features = false
|
|
|
|
[dependencies.serde]
|
|
version = "1.0"
|
|
features = ["derive"]
|
|
|
|
[dependencies.tokio]
|
|
version = "1.48"
|
|
features = ["full"]
|
|
|
|
[dependencies.totp-rs]
|
|
version = "5.7"
|
|
features = ["qr"]
|
|
|
|
[dev-dependencies.nu-plugin-test-support]
|
|
version = "0.109.0"
|
|
path = "../nushell/crates/nu-plugin-test-support" |