[package]
edition = "2021"
rust-version = "1.80"
name = "vimlrs"
version = "0.1.3"
authors = ["MenkeTechnologies <linux.dev25@gmail.com>"]
build = false
exclude = [
"/vendor/",
"/docs/",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Faithful Rust port of the Vimscript (VimL) interpreter, from the Neovim C eval engine"
homepage = "https://menketechnologies.github.io/vimlrs/"
documentation = "https://docs.rs/vimlrs"
readme = "README.md"
keywords = [
"vim",
"vimscript",
"viml",
"interpreter",
"fusevm",
]
categories = [
"command-line-utilities",
"compilers",
]
license = "MIT"
repository = "https://github.com/MenkeTechnologies/vimlrs"
[lib]
name = "vimlrs"
crate-type = [
"lib",
"staticlib",
]
path = "src/lib.rs"
[[bin]]
name = "gen-docs"
path = "src/bin/gen_docs.rs"
[[bin]]
name = "vimlrs"
path = "src/main.rs"
[[test]]
name = "examples"
path = "tests/examples.rs"
[[test]]
name = "ported_fn_names_match_c"
path = "tests/ported_fn_names_match_c.rs"
[dependencies.bincode]
version = "1.3"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"cargo",
]
[dependencies.dirs]
version = "5"
[dependencies.fusevm]
version = "0.14.5"
features = [
"jit",
"jit-disk-cache",
"aot",
]
[dependencies.indexmap]
version = "2"
[dependencies.libc]
version = "0.2"
[dependencies.lsp-server]
version = "0.7.9"
[dependencies.lsp-types]
version = "0.97.0"
[dependencies.memmap2]
version = "0.9"
[dependencies.nix]
version = "0.29"
features = [
"fs",
"time",
]
[dependencies.nu-ansi-term]
version = "0.50"
[dependencies.once_cell]
version = "1"
[dependencies.reedline]
version = "0.47.0"
[dependencies.rkyv]
version = "0.7"
features = [
"validation",
"archive_le",
"size_32",
]
[dependencies.rustc-hash]
version = "2.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sysinfo]
version = "0.38"
features = ["system"]
default-features = false
[dependencies.thiserror]
version = "2.0"
[dependencies.toml]
version = "0.8"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.tempfile]
version = "3"