ffbm/
lib.rs

1//! Firefox Bookmark Manager library.
2//!
3//! Provides functionality for managing Firefox bookmarks through a
4//! version-control-friendly workflow.
5
6#![forbid(unsafe_code)]
7
8mod db;
9mod error;
10mod export;
11mod import;
12mod profile;
13mod types;
14
15pub use error::{Error, Result};
16pub use export::{export_bookmarks, ExportStats};
17pub use import::{import_bookmarks, ImportStats};
18pub use profile::{check_firefox_not_running, find_profile, list_profiles};
19pub use types::{Bookmark, Profile, Separator};