-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (43 loc) · 902 Bytes
/
Copy pathCargo.toml
File metadata and controls
44 lines (43 loc) · 902 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
39
40
41
42
43
44
# Cargo.toml
[workspace]
resolver = "2"
members = [
"compiler/common",
"compiler/syntax",
"compiler/ast",
"compiler/errors",
"compiler/lexer",
"compiler/parser",
"compiler/semantic",
"compiler/module_resolver",
"compiler/ir",
"compiler/optimizer",
"compiler/bytecode",
"compiler/llvm_backend",
"runtime/interpreter",
"runtime/runtime",
"runtime/builtins",
"runtime/gc",
"runtime/vm",
"stdlib",
"cli",
"tools/lsp",
"tools/formatter",
"tools/linter",
"tools/package-manager",
"tools/packager",
"runtime/native_runtime",
]
[workspace.dependencies]
logos = "0.14"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
thiserror = "2"
tower-lsp = "0.20"
rustyline = "14"
colored = "2"
toml = "0.8"
indexmap = "2"
clap_complete = "4"