aboutsummaryrefslogtreecommitdiffstats
path: root/gitolfs3-authenticate
diff options
context:
space:
mode:
Diffstat (limited to 'gitolfs3-authenticate')
-rw-r--r--gitolfs3-authenticate/Cargo.toml2
-rw-r--r--gitolfs3-authenticate/src/main.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/gitolfs3-authenticate/Cargo.toml b/gitolfs3-authenticate/Cargo.toml
index ff2b702..c39b736 100644
--- a/gitolfs3-authenticate/Cargo.toml
+++ b/gitolfs3-authenticate/Cargo.toml
@@ -1,7 +1,7 @@
1[package] 1[package]
2name = "gitolfs3-authenticate" 2name = "gitolfs3-authenticate"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2024"
5license = "MIT" 5license = "MIT"
6 6
7[dependencies] 7[dependencies]
diff --git a/gitolfs3-authenticate/src/main.rs b/gitolfs3-authenticate/src/main.rs
index 027c01b..1195b1c 100644
--- a/gitolfs3-authenticate/src/main.rs
+++ b/gitolfs3-authenticate/src/main.rs
@@ -1,6 +1,6 @@
1use anyhow::{anyhow, bail, Result}; 1use anyhow::{Result, anyhow, bail};
2use chrono::Utc; 2use chrono::Utc;
3use gitolfs3_common::{generate_tag, load_key, Claims, Key, Operation, SpecificClaims}; 3use gitolfs3_common::{Claims, Key, Operation, SpecificClaims, generate_tag, load_key};
4use serde_json::json; 4use serde_json::json;
5use std::{process::ExitCode, time::Duration}; 5use std::{process::ExitCode, time::Duration};
6 6