iwcore 0.1.17

IntelliWallet Core - Password manager library with AES-256 encryption
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Database layer for IntelliWallet
//!
//! Handles SQLite database operations including:
//! - Schema creation and migrations
//! - CRUD operations for items, fields, labels
//! - Encrypted data storage and retrieval

pub mod models;
pub mod schema;
pub mod connection;
pub mod migrations;
pub mod queries;

pub use connection::Database;
pub use models::*;