[package]
edition = "2024"
name = "rex-lsp"
version = "3.9.13"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rex: A strongly-typed, pure, implicitly parallel functional programming language"
homepage = "https://rexlang.ai"
readme = "README.md"
license = "MIT"
repository = "https://github.com/peterkelly/rex"
resolver = "2"
[lib]
name = "rex_lsp"
path = "src/lib.rs"
[[bin]]
name = "rex-lsp"
path = "src/main.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[dependencies.lsp-types]
version = "0.94"
[dependencies.rex-ast]
version = "3.9.13"
[dependencies.rex-engine]
version = "3.9.13"
[dependencies.rex-parser]
version = "3.9.13"
[dependencies.rex-typesystem]
version = "3.9.13"
[dependencies.rex-util]
version = "3.9.13"
[dependencies.serde_json]
version = "1"
[dev-dependencies.rex]
version = "3.9.13"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
version = "1"
features = [
"io-std",
"macros",
"rt-multi-thread",
]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tower-lsp]
version = "0.20"
[lints.clippy]
uninlined_format_args = "allow"