21 lines
436 B
TOML
21 lines
436 B
TOML
|
|
[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]
|
||
|
|
nuwiki-lsp = { path = "../nuwiki-lsp", version = "0.1.0" }
|