Skip to main content

loadsmith_install/
lib.rs

1//! Install, remove, and list mod files for the loadsmith mod-manager library.
2//!
3//! This is an internal crate of the [`loadsmith`] workspace. Most consumers
4//! should depend on the `loadsmith` facade crate instead of using this
5//! crate directly.
6
7mod error;
8mod ops;
9mod rule;
10mod zip;
11
12pub use error::{Error, Result};
13pub use ops::{
14    extract::extract,
15    install::{ConflictStrategy, install},
16    uninstall::uninstall,
17};
18pub use rule::{GlobRule, InstallRule, InstallRuleset, OwnedInstallRuleset, RouteRule};