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

Configure Feed

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

gleam / compiler-cli / Cargo.toml
2.2 kB 75 lines
1# SPDX-License-Identifier: Apache-2.0 2# SPDX-FileCopyrightText: 2020 The Gleam contributors 3 4[package] 5name = "gleam-cli" 6version = "1.17.0" 7authors = ["Louis Pilfold <louis@lpil.uk>"] 8edition = "2024" 9license = "Apache-2.0" 10 11[dependencies] 12# The pure compiler 13gleam-core = { path = "../compiler-core" } 14# The gleam formatter 15gleam-format = { path = "../format" } 16# The language server 17gleam-language-server = { path = "../language-server" } 18# OS SIGINT and SIGTERM signal handling 19ctrlc = { version = "3", features = ["termination"] } 20# Allow user to type in sensitive information without showing it in the shell 21rpassword = "7" 22# Async runtime 23tokio = { version = "1", features = ["rt", "rt-multi-thread"] } 24# Further file system functions (i.e. copy directory) 25fs_extra = "1" 26tracing-subscriber = { version = "0.3.23", features = ["fmt", "env-filter"] } 27# HTTP client 28reqwest = { version = "^0.13", default-features = false, features = ["rustls"] } 29# Checksums 30sha2 = "0" 31# Getting hostname 32hostname = "0" 33# TOML parser/editor that preserves comments & formatting 34toml_edit = "0" 35# File locking 36fslock = "0" 37# Provides a way to determine if two files are the same using filesystem node ids 38same-file = "1" 39# Creation of zip files 40zip = { version = "8", features = ["deflate"], default-features = false } 41# Creation of temporary directories 42tempfile = "3" 43 44async-trait.workspace = true 45base16.workspace = true 46camino = { workspace = true, features = ["serde1"] } 47clap = { workspace = true, features = ["derive"] } 48debug-ignore.workspace = true 49ecow.workspace = true 50flate2.workspace = true 51futures.workspace = true 52hexpm = { path = "../hexpm" } 53http-serde.workspace = true 54http.workspace = true 55ignore.workspace = true 56im.workspace = true 57itertools.workspace = true 58lsp-server.workspace = true 59lsp-types.workspace = true 60opener.workspace = true 61pubgrub.workspace = true 62regex.workspace = true 63serde.workspace = true 64serde_json.workspace = true 65strum.workspace = true 66tar.workspace = true 67termcolor.workspace = true 68toml.workspace = true 69tracing.workspace = true 70 71[dev-dependencies] 72# Setting file modification times for tests 73filetime = "0.2" 74pretty_assertions.workspace = true 75insta.workspace = true