2022-08-20 23:14:59 +03:00
|
|
|
[package]
|
2024-04-22 02:03:56 +03:00
|
|
|
name = "roc_language_server"
|
2022-08-20 23:14:59 +03:00
|
|
|
version = "0.0.1"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[[bin]]
|
2024-01-05 22:22:44 +03:00
|
|
|
name = "roc_language_server"
|
2022-08-20 23:14:59 +03:00
|
|
|
path = "src/server.rs"
|
|
|
|
|
2023-12-20 01:53:38 +03:00
|
|
|
[dev-dependencies]
|
2023-12-29 00:54:48 +03:00
|
|
|
expect-test = "1.4.1"
|
2023-12-20 01:53:38 +03:00
|
|
|
|
|
|
|
|
2022-08-20 23:14:59 +03:00
|
|
|
[dependencies]
|
2022-08-21 00:24:11 +03:00
|
|
|
roc_can = { path = "../compiler/can" }
|
2023-10-22 19:45:11 +03:00
|
|
|
roc_collections = { path = "../compiler/collections" }
|
2023-10-22 20:08:32 +03:00
|
|
|
roc_fmt = { path = "../compiler/fmt" }
|
2022-08-20 23:14:59 +03:00
|
|
|
roc_load = { path = "../compiler/load" }
|
2023-10-22 17:36:03 +03:00
|
|
|
roc_module = { path = "../compiler/module" }
|
2023-10-22 20:08:32 +03:00
|
|
|
roc_parse = { path = "../compiler/parse" }
|
2022-08-20 23:14:59 +03:00
|
|
|
roc_problem = { path = "../compiler/problem" }
|
|
|
|
roc_region = { path = "../compiler/region" }
|
|
|
|
roc_reporting = { path = "../reporting" }
|
|
|
|
roc_solve_problem = { path = "../compiler/solve_problem" }
|
|
|
|
roc_target = { path = "../compiler/roc_target" }
|
2022-08-21 00:24:11 +03:00
|
|
|
roc_types = { path = "../compiler/types" }
|
2022-12-01 06:19:54 +03:00
|
|
|
roc_packaging = {path = "../packaging"}
|
2022-08-20 23:14:59 +03:00
|
|
|
|
2023-10-26 01:17:49 +03:00
|
|
|
bumpalo.workspace = true
|
|
|
|
parking_lot.workspace = true
|
2022-08-20 23:14:59 +03:00
|
|
|
|
|
|
|
tower-lsp = "0.17.0"
|
2023-10-22 19:45:11 +03:00
|
|
|
tokio = { version = "1.20.1", features = [ "rt", "rt-multi-thread", "macros", "io-std" ] }
|
2023-12-20 01:53:38 +03:00
|
|
|
log.workspace = true
|
2023-12-29 23:00:26 +03:00
|
|
|
indoc.workspace=true
|
2023-12-20 01:53:38 +03:00
|
|
|
env_logger = "0.10.1"
|
2024-02-11 05:34:52 +03:00
|
|
|
futures.workspace = true
|