-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (39 loc) · 1.13 KB
/
Cargo.toml
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
[package]
name = "elaina"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"compiler/ast",
"compiler/ast_lowering",
"compiler/codegen_llvm",
"compiler/hir",
"compiler/hir_lowering",
"compiler/mir",
"compiler/lexer",
"compiler/parser",
"compiler/printer",
"compiler/resolve",
"compiler/span",
"compiler/thir",
"compiler/thir_lowering",
"compiler/ty",
]
[dependencies]
ast = { path = "compiler/ast" }
ast_lowering = { path = "compiler/ast_lowering" }
codegen_llvm = { path = "compiler/codegen_llvm" }
hir = { path = "compiler/hir" }
hir_lowering = { path = "compiler/hir_lowering" }
mir = { path = "compiler/mir" }
lexer = { path = "compiler/lexer" }
parser = { path = "compiler/parser" }
printer = { path = "compiler/printer" }
resolve = { path = "compiler/resolve" }
span = { path = "compiler/span" }
thir = {path = "compiler/thir" }
thir_lowering = { path = "compiler/thir_lowering" }
ty = { path = "compiler/ty" }
anyhow = "1.0.56"
clap = { version = "3.0.14", features = ["derive"] }