blob: f6b416e5a2475d02422bd17ae685f9a5593b47ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
local Pkg = require "mason-core.package"
local cargo = require "mason-core.managers.cargo"
return Pkg.new {
name = "lelwel",
desc = [[LL(1) parser generator for Rust]],
homepage = "https://github.com/0x2a-42/lelwel",
languages = { Pkg.Lang.Lelwel },
categories = { Pkg.Cat.LSP },
install = cargo.crate("lelwel", {
features = "lsp,cli",
bin = { "lelwel-ls", "llw" },
}),
}
|