2026-06-24 00:01:59 +00:00
|
|
|
[package]
|
|
|
|
|
name = "nuwiki-ls"
|
|
|
|
|
description = "nuwiki language server binary — speaks LSP over stdio."
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
rust-version.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
homepage.workspace = true
|
|
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "nuwiki-ls"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-06-24 16:21:41 +00:00
|
|
|
nuwiki-lsp = { path = "../nuwiki-lsp", version = "0.5.0" }
|
2026-06-24 00:01:59 +00:00
|
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "io-std"] }
|