- Add `show-arguments` recipe documenting all version update commands - Add `complete-update-interactive` recipe for manual confirmations - Maintain `complete-update` as automatic mode (no prompts) - Update `update-help` to reference new recipes and modes - Document 7-step workflow and step-by-step differences Changes: - complete-update: Automatic mode (recommended for CI/CD) - complete-update-interactive: Interactive mode (with confirmations) - show-arguments: Complete documentation of all commands and modes - Both modes share same 7-step workflow with different behavior in Step 4
35 lines
1.1 KiB
TOML
35 lines
1.1 KiB
TOML
[package]
|
|
name = "nu_plugin_auth"
|
|
version = "0.1.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]
|
|
# Path dependencies to ensure version consistency with nushell submodule
|
|
nu-plugin = { version = "0.107.1", path = "../nushell/crates/nu-plugin" }
|
|
nu-protocol = { version = "0.107.1", path = "../nushell/crates/nu-protocol", features = ["plugin"] }
|
|
|
|
# Authentication and HTTP
|
|
jsonwebtoken = "9.3"
|
|
reqwest = { version = "0.12", features = ["json", "rustls-tls", "blocking"], default-features = false }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
# Secure storage and password handling
|
|
keyring = "3.2"
|
|
rpassword = "7.4"
|
|
base64 = "0.22"
|
|
|
|
# Async runtime
|
|
tokio = { version = "1.40", features = ["full"] }
|
|
|
|
# MFA support
|
|
totp-rs = { version = "5.7", features = ["qr"] }
|
|
qrcode = "0.14"
|
|
|
|
[dev-dependencies]
|
|
nu-plugin-test-support = { version = "0.107.1", path = "../nushell/crates/nu-plugin-test-support" }
|