lux-cli

Crates.iolux-cli
lib.rslux-cli
version
sourcesrc
created_at2025-02-18 21:40:45.243646+00
updated_at2025-04-23 21:21:17.761374+00
descriptionA luxurious package manager for Lua
homepagehttps://github.com/nvim-neorocks/lux
repositoryhttps://github.com/nvim-neorocks/lux
max_upload_size
id1560496
Cargo.toml error:TOML parse error at line 21, column 1 | 21 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
lux (github:nvim-neorocks:lux)

documentation

README


Lux

Lux

A luxurious package manager for Lua.

GitHub Actions Workflow Status GitHub Top Language GitHub License

Key FeaturesHow To UseComparison with LuarocksRelated ProjectsContributing

:star2: Key Features

  • Create and manage Lua projects
    • Easily manage dependencies, build steps and more through the lux.toml file.
  • Parallel builds and installs :rocket:
  • Add/remove dependencies with simple CLI commands
  • Automatic generation of rockspecs
    • Say goodbye to managing 10 different rockspec files in your source code :tada:
  • Integrated code formatting via lx fmt
  • Easily specify compatible Lua versions
    • Lux will take care of Lua header installation automatically
    • Forget about users complaining they have the wrong Lua headers installed on their system
  • Automatic code linting via lx check
    • Powered by luacheck.
  • Powerful lockfile support
    • Makes for fully reproducible developer environments.
    • Makes Lux easy to integrate with Nix!
  • Fully compatible
    • Works with existing luarocks packages.
    • Have a complex rockspec that you don't want to rewrite to TOML? No problem! Lux allows the creation of an extra.rockspec file, everything just works.
    • Have a very complex build script? Lux can shell out to luarocks if it knows it has to preserve maximum compatibility.

[!WARNING]

Lux, while generally functional, is a work in progress and does not have a 1.0 release yet.

:gear: How To Use

Feel free to consult the documentation on how to get started with Lux!

It features a tutorial and several guides to make you good at managing Lua projects.

:bar_chart: Comparison with luarocks

As this project is still a work in progress, some luarocks features have not been (fully) implemented yet. On the other hand, lux has some features that are not present in luarocks.

The following table provides a brief comparison:

lux luarocks v3.11.1
project format TOML / Lua Lua
add/remove dependencies :white_check_mark: :x:
parallel builds/installs :white_check_mark: :x:
proper lockfile support with integrity checks :white_check_mark: :x: (basic, dependency versions only)
run tests with busted :white_check_mark: :white_check_mark:
linting with luacheck :white_check_mark: :x:
code formatting with stylua :white_check_mark: :x:
automatic lua detection/installation :white_check_mark: :x:
default build specs :white_check_mark: :white_check_mark:
custom build backends :white_check_mark:1 :white_check_mark:
rust-mlua build spec :white_check_mark: (builtin) :white_check_mark: (external build backend)
treesitter-parser build spec :white_check_mark: (builtin) :white_check_mark: (external build backend)
install pre-built binary rocks :white_check_mark: :white_check_mark:
install multiple packages with a single command :white_check_mark: :x:
install packages using version constraints :white_check_mark: :x:
auto-detect external dependencies and Lua headers with pkg-config :white_check_mark: :x:
resolve multiple versions of the same dependency at runtime :white_check_mark: :white_check_mark:
pack and upload pre-built binary rocks :white_check_mark: :white_check_mark:
luarocks.org manifest namespaces :white_check_mark: :white_check_mark:
luarocks.org dev packages :white_check_mark: :white_check_mark:
versioning SemVer2 arbitrary
rockspecs with CVS/Mercurial/SVN/SSCM sources :x: (YAGNI3) :white_check_mark:
static type checking :x: (planned) :x:

:wrench: Building from source

Dependencies:

  • openssl
  • libgit2
  • gnupg, libgpg-error and gpgme (*nix only)
  • lua (optional, if building without the vendored-lua feature)

We recommend building with the vendored-lua feature enabled:

cargo build --features vendored-lua

:bulb: You may also like...

  • luarocks - The original Lua package manager
  • rocks.nvim - A Neovim plugin manager that uses luarocks under the hood, and will soon be undergoing a rewrite to use Lux instead.

:purple_heart: Credits

Credits go to the Luarocks team for maintaining luarocks and luarocks.org for as long as they have. Without their prior work Lux would not be possible.

:green_heart: Contributing

Contributions are more than welcome! See CONTRIBUTING.md for a guide.

:book: License

  • Lux is licensed under MIT.
  • The Lux logo © 2025 by Kai Jakobi is licensed under CC BY-NC-SA 4.0.

Footnotes

  1. Supported via a compatibility layer that uses luarocks as a backend.

  2. Mostly compatible with the luarocks version parser, which allows an arbitrary number of version components. To comply with SemVer, we treat anything after the third version component (except for the specrev) as a prerelease/build version.

  3. You Aren't Gonna Need It.

Commit count: 0

cargo fmt