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