luaupm 0.1.0

The Luau package manager: dependencies, tools and scripts for Luau and Roblox projects
1
2
3
4
5
6
7
8
9
10
11
12
13
/*!
Where packages come from: index lookup, dependency resolution, and the
archive publish uploads.

`index` and `resolver` talk to git indices: wally format, pesde format, and
lpm's own (pesde format whose entries bake in a `download` URL, written only
by the registry API). `pack` builds the tarball `lpm publish` sends to that
API (see `net::registry`).
*/

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