diff options
Diffstat (limited to 'gitolfs3-authenticate')
-rw-r--r-- | gitolfs3-authenticate/Cargo.toml | 2 | ||||
-rw-r--r-- | gitolfs3-authenticate/src/main.rs | 4 |
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] |
2 | name = "gitolfs3-authenticate" | 2 | name = "gitolfs3-authenticate" |
3 | version = "0.1.0" | 3 | version = "0.1.0" |
4 | edition = "2021" | 4 | edition = "2024" |
5 | license = "MIT" | 5 | license = "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 @@ | |||
1 | use anyhow::{anyhow, bail, Result}; | 1 | use anyhow::{Result, anyhow, bail}; |
2 | use chrono::Utc; | 2 | use chrono::Utc; |
3 | use gitolfs3_common::{generate_tag, load_key, Claims, Key, Operation, SpecificClaims}; | 3 | use gitolfs3_common::{Claims, Key, Operation, SpecificClaims, generate_tag, load_key}; |
4 | use serde_json::json; | 4 | use serde_json::json; |
5 | use std::{process::ExitCode, time::Duration}; | 5 | use std::{process::ExitCode, time::Duration}; |
6 | 6 | ||