aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorLibravatar Rutger Broekhoff2024-01-26 12:28:39 +0100
committerLibravatar Rutger Broekhoff2024-01-26 12:28:39 +0100
commitf146743061ba8170569bf18518202df9a43c09f3 (patch)
tree798c303c07f9146d420de0bb5babb3df0fed58f5 /common
parentc3d120445877b307f5ea7e95aed4bab45d7dede0 (diff)
downloadgitolfs3-f146743061ba8170569bf18518202df9a43c09f3.tar.gz
gitolfs3-f146743061ba8170569bf18518202df9a43c09f3.zip
Clean up part of the code
Diffstat (limited to 'common')
-rw-r--r--common/src/lib.rs11
1 files changed, 6 insertions, 5 deletions
diff --git a/common/src/lib.rs b/common/src/lib.rs
index 995352d..0a538a5 100644
--- a/common/src/lib.rs
+++ b/common/src/lib.rs
@@ -1,9 +1,10 @@
1use chrono::{DateTime, Utc}; 1use chrono::{DateTime, Utc};
2use serde::de; 2use serde::{de, Deserialize, Serialize};
3use serde::{Deserialize, Serialize}; 3use std::{
4use std::fmt::Write; 4 fmt::{self, Write},
5use std::ops; 5 ops,
6use std::{fmt, str::FromStr}; 6 str::FromStr,
7};
7use subtle::ConstantTimeEq; 8use subtle::ConstantTimeEq;
8 9
9#[derive(Debug, Eq, PartialEq, Copy, Clone, Serialize, Deserialize)] 10#[derive(Debug, Eq, PartialEq, Copy, Clone, Serialize, Deserialize)]