Skip to content

Commit c4a9059

Browse files
committed
Merge branch 'oidc_e2e'
2 parents 51a1cd3 + 2e16021 commit c4a9059

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

crates/matrix-sdk/src/authentication/oidc/cross_process.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
use std::sync::Arc;
22

3+
#[cfg(feature = "e2e-encryption")]
34
use matrix_sdk_base::crypto::{
45
store::{LockableCryptoStore, Store},
56
CryptoStoreError,

crates/matrix-sdk/src/authentication/oidc/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,9 +191,9 @@ use mas_oidc_client::{
191191
IdToken,
192192
},
193193
};
194-
use matrix_sdk_base::{
195-
crypto::types::qr_login::QrCodeData, once_cell::sync::OnceCell, SessionMeta,
196-
};
194+
#[cfg(feature = "e2e-encryption")]
195+
use matrix_sdk_base::crypto::types::qr_login::QrCodeData;
196+
use matrix_sdk_base::{once_cell::sync::OnceCell, SessionMeta};
197197
use rand::{rngs::StdRng, Rng, SeedableRng};
198198
use ruma::api::client::discovery::get_authentication_issuer;
199199
use serde::{Deserialize, Serialize};

0 commit comments

Comments
 (0)