-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 707 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 707 Bytes
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
[package]
name = "language-project-template"
description = "My starter for language projects"
version = "0.0.0"
license = "MIT"
authors = ["Kylee Tilley <kyleetilley@gmail.com>"]
edition = "2024"
repository = "https://github.com/kyleect/language-project-template"
[build-dependencies]
lalrpop = "0.22.2"
[dev-dependencies]
rstest = "0.25.0"
pretty_assertions = "1.4.1"
nu-ansi-term = "0.50.0"
reedline = "0.40.0"
clap = { version = "4.4.16", features = ["derive"] }
[dependencies]
logos = "0.15.0"
lalrpop-util = { version = "0.22.2", features = ["lexer", "unicode"] }
pastey = "0.1.0"
iota = "0.2.3"
regex = "1.11.1"
thiserror = "2"
once_cell = "1.21.3"
codespan-reporting = "0.12.0"
line-col = "0.2.1"