crabapple/lib.rs
1#![forbid(unsafe_code)]
2#![doc = include_str!("../README.md")]
3
4pub mod backup;
5pub mod error;
6
7/// Main interface for accessing an iOS backup.
8pub use backup::Backup;
9
10/// Represents a file entry in the backup database.
11pub use crate::backup::types::BackupFileEntry;
12
13/// Authentication options for encrypted backups.
14pub use backup::types::Authentication;
15
16/// Retrieve basic device info from a device backup folder.
17pub use backup::device::get_device_basic_info;
18
19/// Error type for all library operations.
20pub use error::{BackupError, Result};