Skip to content

Commit

Permalink
Allow warns for now
Browse files Browse the repository at this point in the history
  • Loading branch information
gferon committed Oct 24, 2024
1 parent c5fba7b commit 9a4b161
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 2 additions & 3 deletions presage-store-sqlite/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(warnings)]

use std::path::Path;

use presage::{
Expand All @@ -7,16 +9,13 @@ use presage::{
use protocol::SqliteProtocolStore;
use sqlx::{sqlite::SqliteConnectOptions, SqlitePool};

#[allow(unused)]
mod content;
mod error;
#[allow(unused)]
mod protocol;

pub use error::SqliteStoreError;

#[derive(Debug, Clone)]
#[allow(unused)]
pub struct SqliteStore {
db: SqlitePool,
/// Whether to trust new identities automatically (for instance, when a somebody's phone has changed)
Expand Down
1 change: 0 additions & 1 deletion presage-store-sqlite/src/protocol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ use presage::libsignal_service::{
use crate::SqliteStore;

#[derive(Clone)]
#[allow(dead_code)]
pub struct SqliteProtocolStore {
pub(crate) store: SqliteStore,
}
Expand Down

0 comments on commit 9a4b161

Please sign in to comment.