-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 749 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 749 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
[workspace]
members = [".", "components/*"]
[package]
name = "lox"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
expect-test = "1.4.1"
salsa = { path="components/salsa" }
lox-ir = { path="components/lox-ir" }
lox-parse = { path="components/lox-parse" }
lox-lex = { path="components/lox-lex" }
lox-compile = { path="components/lox-compile" }
lox-execute = { path="components/lox-execute" }
lox-error-format = { path="components/lox-error-format" }
lox-db = { path="components/lox-db" }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
clap = { version = "4.4.4", features = ["derive"] }
walkdir = "2.4.0"