dotling 0.6.2

A dotfiles management CLI — track, link, and sync your config files across machines
Documentation
// ── Core foundation ──────────────────────────────────────────────

pub mod core;

// Re-export core submodules at crate root so existing paths resolve
pub use core::{error, fs, path};
pub(crate) use core::{platform, store};

// ── Configuration & templating ───────────────────────────────────

pub mod config;
pub use config::{template, vars};

// ── Crypto ───────────────────────────────────────────────────────

pub mod crypto;

// ── Sync engine ──────────────────────────────────────────────────

pub mod sync;
pub use sync::hooks;
pub(crate) use sync::{backup, deploy, fingerprint, merge};

// ── CLI & command dispatch ───────────────────────────────────────

pub mod cli;
pub mod commands;
pub mod ui;

// ── Convenience re-exports ───────────────────────────────────────

pub use error::{Error, Result};