luaupm 0.1.0-beta.1

The Luau package manager: dependencies, tools and scripts for Luau and Roblox projects
1
2
3
4
5
6
7
8
9
10
//! Where packages come from: index lookup, dependency resolution, and the
//! archive a publish uploads.
//!
//! TODO(api): this is the layer the lpm API replaces. `index` and `resolver`
//! speak to git indices (wally and pesde format); `pack` builds the tarball
//! that publishing sends.

pub mod index;
pub mod pack;
pub mod resolver;