Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

gleam / language-server / Cargo.toml
757 B 32 lines
1# SPDX-License-Identifier: Apache-2.0 2# SPDX-FileCopyrightText: 2025 The Gleam contributors 3 4[package] 5name = "gleam-language-server" 6version = "1.17.0" 7authors = ["Louis Pilfold <louis@lpil.uk>"] 8edition = "2024" 9license = "Apache-2.0" 10 11[dependencies] 12gleam-core = { path = "../compiler-core" } 13gleam-format = { path = "../format" } 14 15camino.workspace = true 16debug-ignore.workspace = true 17ecow.workspace = true 18hexpm = { path = "../hexpm" } 19im.workspace = true 20itertools.workspace = true 21lsp-server.workspace = true 22lsp-types.workspace = true 23serde_json.workspace = true 24strum.workspace = true 25vec1.workspace = true 26serde.workspace = true 27tracing.workspace = true 28toml.workspace = true 29num-bigint.workspace = true 30 31[dev-dependencies] 32insta.workspace = true