-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 932 Bytes
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 932 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
[workspace]
resolver = "3"
members = [
# compiler
"compiler/muonc",
"compiler/muonc_errors",
"compiler/muonc_lexer",
"compiler/muonc_macros",
"compiler/muonc_middle",
"compiler/muonc_parser",
"compiler/muonc_span",
"compiler/muonc_token",
"compiler/muonc_utils",
]
[workspace.package]
version = "0.1.0"
license = "MIT"
edition = "2024"
[workspace.dependencies]
muonc_errors = { path = "compiler/muonc_errors" }
muonc_lexer = { path = "compiler/muonc_lexer" }
muonc_macros = { path = "compiler/muonc_macros" }
muonc_middle = { path = "compiler/muonc_middle" }
muonc_parser = { path = "compiler/muonc_parser" }
muonc_span = { path = "compiler/muonc_span" }
muonc_token = { path = "compiler/muonc_token" }
muonc_utils = { path = "compiler/muonc_utils" }
# other dependencies
bitflags = "2.10"
boxcar = "0.2"
clap = { version = "4.5", features = ["derive"] }
indexmap = "2.13"
thiserror = "2.0"
termcolor = "1.4"