roc/crates/lang_srv/Cargo.toml

37 lines
1006 B
TOML
Raw Normal View History

2022-08-20 23:14:59 +03:00
[package]
name = "roc_lang_srv"
version = "0.0.1"
edition = "2021"
[[bin]]
name = "roc_language_server"
2022-08-20 23:14:59 +03:00
path = "src/server.rs"
[dev-dependencies]
expect-test = "1.4.1"
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" ] }
log.workspace = true
indoc.workspace=true
env_logger = "0.10.1"