increparse-lua 0.1.1

Define an increparse language server in pure Lua: passes, diagnostics, and symbols in one Lua file.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "increparse-lua"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Define an increparse language server in pure Lua: passes, diagnostics, and symbols in one Lua file."
readme = "README.md"
keywords = [
    "parser",
    "lua",
    "lsp",
    "neovim",
]
categories = ["parsing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/thyrgle/increparse"

[lib]
name = "increparse_lua"
path = "src/lib.rs"

[[bin]]
name = "increparse-lua-server"
path = "src/bin/server.rs"

[[test]]
name = "lua_pass_tests"
path = "tests/lua_pass_tests.rs"

[[test]]
name = "server_smoke"
path = "tests/server_smoke.rs"

[dependencies.increparse]
version = "0.1.0"

[dependencies.increparse-lsp]
version = "0.3.0"

[dependencies.lsp-types]
version = "0.97"

[dependencies.mlua]
version = "0.12"
features = [
    "lua54",
    "send",
    "vendored",
]

[dev-dependencies.serde_json]
version = "1"