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-core / Cargo.toml
2.5 kB 91 lines
1# SPDX-License-Identifier: Apache-2.0 2# SPDX-FileCopyrightText: 2020 The Gleam contributors 3 4[package] 5name = "gleam-core" 6version = "1.17.0" 7authors = ["Louis Pilfold <louis@lpil.uk>"] 8edition = "2024" 9license = "Apache-2.0" 10 11[dependencies] 12# Error message and warning formatting 13codespan-reporting = "0" 14# Graph data structures 15petgraph = "0.8" 16# Template rendering 17askama = "0" 18# Markdown parsing 19pulldown-cmark = { version = "0", default-features = false, features = [ 20 "html", 21] } 22# XDG directory locations 23dirs-next = "2" 24# SPDX license parsing 25spdx = "0" 26# Binary format de-serialization 27bincode = { version = "2", features = ["alloc", "serde"] } 28# cross platform single glob and glob set matching 29globset = { version = "0", features = ["serde1"] } 30# Checksums 31xxhash-rust.workspace = true 32# Pubgrub dependency resolution algorithm 33pubgrub = "0.3" 34# Used for converting absolute path to relative path 35pathdiff = { version = "0", features = ["camino"] } 36# Memory arena using ids rather than references 37id-arena = "2" 38# Bijective (bi-directional) hashmap 39bimap = { version = "0.6.3", features = ["serde"] } 40num-traits = "0.2.19" 41# Encryption 42age = { version = "0.11", features = ["armor"] } 43radix_trie = "0.3" 44# Ensuring recursive type-checking doesn't stack overflow 45stacker = "0.1.21" 46# Manipulating bit arrays 47bitvec = { version = "1", features = ["serde"] } 48# Sourcemap generation 49sourcemap = "9" 50indexmap = "2.12.1" 51 52num-bigint.workspace = true 53async-trait.workspace = true 54base16.workspace = true 55camino = { workspace = true, features = ["serde1"] } 56clap = { workspace = true, features = ["derive"] } 57debug-ignore.workspace = true 58ecow = { workspace = true, features = ["serde"] } 59flate2.workspace = true 60futures.workspace = true 61hexpm = { path = "../hexpm" } 62pretty-arena = { path = "../pretty-arena" } 63http.workspace = true 64im.workspace = true 65itertools.workspace = true 66lsp-server.workspace = true 67lsp-types.workspace = true 68regex.workspace = true 69serde.workspace = true 70serde_json.workspace = true 71strum.workspace = true 72tar.workspace = true 73termcolor.workspace = true 74thiserror.workspace = true 75toml.workspace = true 76tracing.workspace = true 77vec1.workspace = true 78unicode-segmentation.workspace = true 79 80[dev-dependencies] 81pretty_assertions.workspace = true 82insta.workspace = true 83# Random value generation 84rand = "0.9" 85# Time types 86time = "0.3" 87ignore.workspace = true 88 89[build-dependencies] 90# Data (de)serialisation 91serde_derive = "1"