Skip to content

Commit

Permalink
fix(oidc): remove unnecessary e2e-encryption imports
Browse files Browse the repository at this point in the history
  • Loading branch information
kilimnik committed Jan 19, 2025
1 parent e37ad11 commit 2e16021
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions crates/matrix-sdk/src/oidc/cross_process.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use std::sync::Arc;

#[cfg(feature = "e2e-encryption")]
use matrix_sdk_base::crypto::{
store::{LockableCryptoStore, Store},
CryptoStoreError,
Expand Down
6 changes: 3 additions & 3 deletions crates/matrix-sdk/src/oidc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@ use mas_oidc_client::{
IdToken,
},
};
use matrix_sdk_base::{
crypto::types::qr_login::QrCodeData, once_cell::sync::OnceCell, SessionMeta,
};
#[cfg(feature = "e2e-encryption")]
use matrix_sdk_base::crypto::types::qr_login::QrCodeData;
use matrix_sdk_base::{once_cell::sync::OnceCell, SessionMeta};
use rand::{rngs::StdRng, Rng, SeedableRng};
use ruma::api::client::discovery::get_authentication_issuer;
use serde::{Deserialize, Serialize};
Expand Down

0 comments on commit 2e16021

Please sign in to comment.