2022-05-29 21:27:12 +00:00
|
|
|
[package]
|
|
|
|
edition = "2021"
|
|
|
|
name = "server"
|
|
|
|
version = "0.1.0"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["tower-lsp/runtime-agnostic"]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
console_error_panic_hook = "0.1.7"
|
2022-05-30 00:25:27 +00:00
|
|
|
futures = "0.3.21"
|
|
|
|
js-sys = "0.3.57"
|
2022-05-29 21:27:12 +00:00
|
|
|
tower-lsp = { version = "0.17.0", default-features = false }
|
|
|
|
wasm-bindgen = "0.2.80"
|
2022-05-30 00:25:27 +00:00
|
|
|
wasm-bindgen-futures = { version = "0.4.30", features = ["futures-core-03-stream"] }
|
2022-05-29 21:27:12 +00:00
|
|
|
wasm-streams = "0.2.3"
|
|
|
|
web-sys = { version = "0.3.57", features = [ "console", "ReadableStream", "WritableStream" ] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|