-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (29 loc) · 931 Bytes
/
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
[package]
name = "duckstruct"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ast = { path = "./crates/ast" }
codegen = { path = "./crates/codegen" }
compile = { path = "./crates/compile" }
data-structures = { path = "./crates/data-structures" }
hir = { path = "./crates/hir" }
lexer = { path = "./crates/lexer" }
parser = { path = "./crates/parser" }
syntax = { path = "./crates/syntax" }
tycheck = { path = "./crates/tycheck" }
clap = { version = "4.0.17", features = ["derive"] }
home = "0.5.4"
project-root = "0.2.2"
rustyline = "10.0.0"
rustyline-derive = "0.7.0"
[dev-dependencies]
insta = { version = "1.21.0", features = ["yaml", "serde"] }
serde = { version = "1.0.145", features = ["derive"] }
[workspace]
members = ["crates/*"]
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3