upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/src/bin/ngit/sub_commands/export_keys.rs
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2024-12-16 09:00:46 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2024-12-16 09:46:30 +0000
commit4ee83e2fe5335a8afd78439c35f029c4a472e797 (patch)
treebdb111b191e7a68cb74ce29b4bb2757b4b7be91f /src/bin/ngit/sub_commands/export_keys.rs
parent5fe839e2bf8ceb2931c1984efb2d956980431203 (diff)
chore: bump nix flake rust nightly `fmt` overlay
update the rust nightly `fmt` overlay which needs to be pinned to a specific version (this case by date) update formatting in main files via `cargo fmt`
Diffstat (limited to 'src/bin/ngit/sub_commands/export_keys.rs')
-rw-r--r--src/bin/ngit/sub_commands/export_keys.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/ngit/sub_commands/export_keys.rs b/src/bin/ngit/sub_commands/export_keys.rs
index 54a716f..45b1b89 100644
--- a/src/bin/ngit/sub_commands/export_keys.rs
+++ b/src/bin/ngit/sub_commands/export_keys.rs
@@ -2,9 +2,9 @@ use anyhow::{Context, Result};
2use ngit::{ 2use ngit::{
3 cli_interactor::{Interactor, InteractorPrompt, PromptChoiceParms}, 3 cli_interactor::{Interactor, InteractorPrompt, PromptChoiceParms},
4 login::{ 4 login::{
5 SignerInfo, SignerInfoSource,
5 existing::{get_signer_info, load_existing_login}, 6 existing::{get_signer_info, load_existing_login},
6 fresh::generate_qr, 7 fresh::generate_qr,
7 SignerInfo, SignerInfoSource,
8 }, 8 },
9}; 9};
10 10