Skip to content

Commit

Permalink
removes redundant code in derives
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrltrent committed Mar 29, 2023
1 parent 7b5177e commit 76d9dd5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ use actix_web::http::StatusCode;
use actix_web::http::header;
use actix_web::web;
use log::{
debug,
error,
warn,
};
Expand Down
2 changes: 1 addition & 1 deletion src/masked_oid.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use serde::{Deserialize, Serialize};
const TYPE_OBJECT_ID: u8 = 0;
const TYPE_SEQUENTIAL_ID: u8 = 1;

#[derive(Clone, Deserialize, Serialize, PartialEq, Debug)]
#[derive(Clone, Deserialize, Serialize, PartialEq)]
pub struct MaskedObjectId(
#[serde(with = "crate::base64_serde")]
[u8; 16]
Expand Down

0 comments on commit 76d9dd5

Please sign in to comment.