A simple CPU rendered GUI IDE experience.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 21 |
1 files changed, 20 insertions, 1 deletions
@@ -30,6 +30,25 @@ regex = "1.11.3" tree-house = { version = "0.3.0", features = ["fixtures"] } helix-loader = { path = "../helix/helix-loader/" } helix-core = { path = "../helix/helix-core/" } +serde_json = "1.0.145" +serde = "1.0.228" +serde_derive = "1.0.228" +log = "0.4.28" +crossbeam = { version = "0.8.4", features = ["nightly", "crossbeam-channel"] } +lsp-server = { version = "0.7.9", path = "../rust-analyzer/lib/lsp-server" } +test-log = "0.2.18" +lsp-types = { path = "../helix/helix-lsp-types", package = "helix-lsp-types" } +env_logger = "0.11.8" +oneshot = { version = "0.1.11", default-features = false, features = [ + "async", + "std", +] } +url = "2.5.7" +anyhow = "1.0.100" +arc-swap = "1.7.1" +tokio = { version = "1.47.1", features = ["rt-multi-thread"] } +regex-cursor = "0.1.5" +papaya = "0.2.3" [build-dependencies] cc = "*" @@ -37,4 +56,4 @@ cc = "*" [profile.release] debug = 2 # overflow-checks = true -debug-assertions = true +# debug-assertions = true |