nushell-plugins/nu_plugin_auth/Cargo.toml.backup
Jesús Pérez 4b92aa764a
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
implements a production-ready bootstrap installer with comprehensive error handling, version-agnostic archive extraction, and clear user messaging. All improvements follow DRY principles using symlink-based architecture for single-source-of-truth maintenance
2025-12-11 22:04:54 +00:00

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"