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
691 B 30 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" } 13 14camino.workspace = true 15debug-ignore.workspace = true 16ecow.workspace = true 17hexpm = { path = "../hexpm" } 18im.workspace = true 19itertools.workspace = true 20lsp-server.workspace = true 21lsp-types.workspace = true 22serde_json.workspace = true 23strum.workspace = true 24vec1.workspace = true 25serde.workspace = true 26tracing.workspace = true 27toml.workspace = true 28 29[dev-dependencies] 30insta.workspace = true