-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 874 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (34 loc) · 874 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
30
31
32
33
34
35
36
37
38
[package]
name = "language"
version = "0.1.0"
edition = "2021"
[dev-dependencies]
indoc = { workspace = true }
[dependencies]
parser = { workspace = true }
code-generator = { workspace = true }
clap = { version = "4.5.21", features = ["derive"] }
type-checker = { workspace = true }
[workspace]
members = [
"crates/ast",
"crates/code-generator",
"crates/parser",
"crates/tools",
"crates/type-checker",
]
[workspace.dependencies]
anyhow = "1.0.94"
ast = { path = "crates/ast" }
code-generator = { path = "crates/code-generator" }
type-checker = { path = "crates/type-checker" }
parser = { path = "crates/parser" }
pretty_assertions = "1.4.1"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
thiserror = "2.0.4"
indoc = "2.0.5"
insta = { version = "1.43.1", features = ["yaml"] }
wast = "235.0.0"
chumsky = "0.10.1"
logos = "0.15.0"