-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 673 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 673 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
[package]
name = "vim9jit"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.65"
clap = { version = "4.0.10", features = ["derive"] }
gen = { path = "crates/vim9-gen", package = "vim9-gen" }
parser = { path = "crates/vim9-parser", package = "vim9-parser" }
[dev-dependencies]
[features]
[workspace]
members = [
"crates/vim9-lexer",
"crates/vim9-parser",
"crates/vim9-gen",
"crates/macros",
"crates/vimfuncs",
"crates/format/",
]
default-members = [
"crates/vim9-lexer",
"crates/vim9-parser",
"crates/vim9-gen",
"."
]