blob: 6bb326e147327c0df2feb60c93f38628f6d72a9c (
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" },
}),
}
|