Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,565 changes: 1,108 additions & 457 deletions Cargo.lock

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,8 @@ urlencoding = "2.1"
pest = "2.7"
pest_derive = "2.7"
console = "0.15"
keyring = { version = "3.6.3", features = ["apple-native", "linux-native"] }
rand = "0.8"
sha2 = "0.10"
base64 = "0.22"
open = "5"
4 changes: 4 additions & 0 deletions src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ pub struct Args {
#[serde(default)]
pub no_spinner: bool,

#[options(no_short, help = "Store secrets in file instead of OS keychain")]
#[serde(default)]
pub no_keyring: bool,

#[options(no_short, help = "Update default configuration values")]
#[serde(skip_serializing, skip_deserializing)]
pub update_defaults: bool,
Expand Down
Loading
Loading