roc/crates/lang_srv/Cargo.toml
Eli Dowling 6dfbc1747c
Using env_logger for logging
added testing

Signed-off-by: faldor20 <eli.jambu@yahoo.com>
2024-01-29 21:54:47 +10:00

40 lines
1.0 KiB
TOML

[package]
name = "roc_lang_srv"
version = "0.0.1"
edition = "2021"
[[bin]]
name = "roc_ls"
path = "src/server.rs"
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3
[dev-dependencies]
insta = "1.34.0"
[dependencies]
roc_can = { path = "../compiler/can" }
roc_collections = { path = "../compiler/collections" }
roc_fmt = { path = "../compiler/fmt" }
roc_load = { path = "../compiler/load" }
roc_module = { path = "../compiler/module" }
roc_parse = { path = "../compiler/parse" }
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" }
roc_types = { path = "../compiler/types" }
roc_packaging = {path = "../packaging"}
bumpalo.workspace = true
parking_lot.workspace = true
tower-lsp = "0.17.0"
tokio = { version = "1.20.1", features = [ "rt", "rt-multi-thread", "macros", "io-std" ] }
log.workspace = true
env_logger = "0.10.1"