mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-09 10:56:20 +00:00
1d6792b17d
This PR extracts Haskell support into an extension and removes the built-in Haskell support from Zed. I tested out the extension locally in a Nix shell using `nix-shell -p ghc haskell-language-server` to confirm the language server still operated as expected: <img width="341" alt="Screenshot 2024-03-26 at 11 26 26 AM" src="https://github.com/zed-industries/zed/assets/1486634/df16fd38-4046-4a45-ac9f-c2b85bffe5c0"> Release Notes: - Removed built-in support for Haskell, in favor of making it available as an extension. The Haskell extension will be suggested for download when you open a `.hs` file.
88 lines
2.5 KiB
TOML
88 lines
2.5 KiB
TOML
[package]
|
|
name = "languages"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-compression.workspace = true
|
|
async-tar.workspace = true
|
|
async-trait.workspace = true
|
|
collections.workspace = true
|
|
feature_flags.workspace = true
|
|
futures.workspace = true
|
|
gpui.workspace = true
|
|
language.workspace = true
|
|
lazy_static.workspace = true
|
|
log.workspace = true
|
|
lsp.workspace = true
|
|
node_runtime.workspace = true
|
|
parking_lot.workspace = true
|
|
project.workspace = true
|
|
regex.workspace = true
|
|
rope.workspace = true
|
|
rust-embed = "8.2.0"
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
settings.workspace = true
|
|
shellexpand.workspace = true
|
|
smol.workspace = true
|
|
task.workspace = true
|
|
toml.workspace = true
|
|
tree-sitter-astro.workspace = true
|
|
tree-sitter-bash.workspace = true
|
|
tree-sitter-c-sharp.workspace = true
|
|
tree-sitter-c.workspace = true
|
|
tree-sitter-clojure.workspace = true
|
|
tree-sitter-cpp.workspace = true
|
|
tree-sitter-css.workspace = true
|
|
tree-sitter-dart.workspace = true
|
|
tree-sitter-dockerfile.workspace = true
|
|
tree-sitter-elixir.workspace = true
|
|
tree-sitter-elm.workspace = true
|
|
tree-sitter-embedded-template.workspace = true
|
|
tree-sitter-erlang.workspace = true
|
|
tree-sitter-glsl.workspace = true
|
|
tree-sitter-go.workspace = true
|
|
tree-sitter-gomod.workspace = true
|
|
tree-sitter-gowork.workspace = true
|
|
tree-sitter-hcl.workspace = true
|
|
tree-sitter-heex.workspace = true
|
|
tree-sitter-html.workspace = true
|
|
tree-sitter-jsdoc.workspace = true
|
|
tree-sitter-json.workspace = true
|
|
tree-sitter-lua.workspace = true
|
|
tree-sitter-markdown.workspace = true
|
|
tree-sitter-nix.workspace = true
|
|
tree-sitter-nu.workspace = true
|
|
tree-sitter-ocaml.workspace = true
|
|
tree-sitter-php.workspace = true
|
|
tree-sitter-prisma-io.workspace = true
|
|
tree-sitter-proto.workspace = true
|
|
tree-sitter-purescript.workspace = true
|
|
tree-sitter-python.workspace = true
|
|
tree-sitter-racket.workspace = true
|
|
tree-sitter-regex.workspace = true
|
|
tree-sitter-ruby.workspace = true
|
|
tree-sitter-rust.workspace = true
|
|
tree-sitter-scheme.workspace = true
|
|
tree-sitter-toml.workspace = true
|
|
tree-sitter-typescript.workspace = true
|
|
tree-sitter-vue.workspace = true
|
|
tree-sitter-yaml.workspace = true
|
|
tree-sitter-zig.workspace = true
|
|
tree-sitter.workspace = true
|
|
util.workspace = true
|
|
|
|
[dev-dependencies]
|
|
text.workspace = true
|
|
theme.workspace = true
|
|
unindent.workspace = true
|
|
workspace = { workspace = true, features = ["test-support"] }
|