lux-lib 0.12.0

Library for the lux package manager for Lua
Documentation
#![allow(ambiguous_glob_reexports)]

mod build_project;
mod download;
mod exec;
mod fetch;
mod install;
mod install_spec;
mod pack;
mod pin;
mod remove;
mod resolve;
mod run;
mod run_lua;
mod sync;
mod test;
mod unpack;
mod update;

pub use build_project::*;
pub use download::*;
pub use exec::*;
pub use fetch::*;
pub use install::*;
pub use install_spec::*;
pub use pack::*;
pub use pin::*;
pub use remove::*;
pub use run::*;
pub use run_lua::*;
pub use sync::*;
pub use test::*;
pub use unpack::*;
pub use update::*;

pub(crate) use resolve::*;