Skip to content

Commit 4b3e6fa

Browse files
committed
Cargo fmt
1 parent 248b3a3 commit 4b3e6fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib/client/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
//! Client type definitions.
22
33
use crate::data::traits::{Encryptable, Encrypted};
4-
use crate::keys::{KeyProvider, SessionKeys};
54
#[cfg(feature = "offline")]
65
use crate::keys::GlobalPublicKeys;
6+
use crate::keys::{KeyProvider, SessionKeys};
77
use rand_core::{CryptoRng, Rng};
88

99
/// A PEP client that can encrypt and decrypt data, based on session key pairs for pseudonyms and attributes.

src/lib/data/records.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ use crate::data::simple::{
88
};
99
use crate::data::traits::{Encryptable, Encrypted, Transcryptable};
1010
use crate::factors::TranscryptionInfo;
11-
use crate::keys::SessionKeys;
1211
#[cfg(feature = "offline")]
1312
use crate::keys::GlobalPublicKeys;
13+
use crate::keys::SessionKeys;
1414
use rand_core::{CryptoRng, Rng};
1515
#[cfg(feature = "serde")]
1616
use serde::{Deserialize, Deserializer, Serialize, Serializer};

0 commit comments

Comments
 (0)