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 92 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 = { version = "0", features = ["xxh3"] } 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# Unicode grapheme traversal 39unicode-segmentation = "1.13.2" 40# Bijective (bi-directional) hashmap 41bimap = { version = "0.6.3", features = ["serde"] } 42# Parsing of arbitrary width int values 43num-bigint = { version = "0.4.6", features = ["serde"] } 44num-traits = "0.2.19" 45# Encryption 46age = { version = "0.11", features = ["armor"] } 47radix_trie = "0.3" 48# Ensuring recursive type-checking doesn't stack overflow 49stacker = "0.1.21" 50# Manipulating bit arrays 51bitvec = { version = "1", features = ["serde"] } 52# Sourcemap generation 53sourcemap = "9" 54 55async-trait.workspace = true 56base16.workspace = true 57camino = { workspace = true, features = ["serde1"] } 58clap = { workspace = true, features = ["derive"] } 59debug-ignore.workspace = true 60ecow = { workspace = true, features = ["serde"] } 61flate2.workspace = true 62futures.workspace = true 63hexpm = { path = "../hexpm" } 64http.workspace = true 65im.workspace = true 66itertools.workspace = true 67lsp-server.workspace = true 68lsp-types.workspace = true 69regex.workspace = true 70serde.workspace = true 71serde_json.workspace = true 72strum.workspace = true 73tar.workspace = true 74termcolor.workspace = true 75thiserror.workspace = true 76toml.workspace = true 77tracing.workspace = true 78indexmap = "2.12.1" 79vec1.workspace = true 80 81[dev-dependencies] 82pretty_assertions.workspace = true 83insta.workspace = true 84# Random value generation 85rand = "0.9" 86# Time types 87time = "0.3" 88ignore.workspace = true 89 90[build-dependencies] 91# Data (de)serialisation 92serde_derive = "1"