mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-01 07:48:45 +00:00
5211972743
Ideally we'd not have any dependency pull in the derive feature for faster build times, once that is the case this change would have an actual effect. See https://github.com/matklad/macro-dep-test/blob/master/README.md for context.
21 lines
467 B
TOML
21 lines
467 B
TOML
[package]
|
|
name = "lsp-server"
|
|
version = "0.7.8"
|
|
description = "Generic LSP server scaffold."
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/rust-lang/rust-analyzer/tree/master/lib/lsp-server"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
log = "0.4.17"
|
|
serde_json = "1.0.108"
|
|
serde = { version = "1.0.216" }
|
|
serde_derive = { version = "1.0.216" }
|
|
crossbeam-channel.workspace = true
|
|
|
|
[dev-dependencies]
|
|
lsp-types = "=0.95"
|
|
ctrlc = "3.4.1"
|
|
|
|
[lints]
|
|
workspace = true
|