-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
84 lines (73 loc) · 1.88 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "nail"
authors = ["ktanaka101 <[email protected]>"]
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
default-run = "dock"
[build]
rustflags = ["-Z", "threads=8"]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
[dependencies]
anyhow = { workspace = true }
clap = { workspace = true }
tracing-subscriber = { workspace = true }
tracing-tree = { workspace = true }
dock = { workspace = true }
lsp = { workspace = true }
[workspace]
members = ["crates/*"]
[workspace.lints.rust]
missing_docs = "deny"
[workspace.dependencies]
anyhow = "*"
ariadne = { version = "*", features = ["auto-color"] }
clap = { version = "*", features = ["derive"] }
crossbeam-channel = "*"
drop_bomb = "*"
either = "*"
expect-test = "*"
indexmap = "*"
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "master", features = [
"llvm18-0",
] }
la-arena = "*"
logos = "*"
lsp-server = { version = "*" }
lsp-types = { version = "*", features = ["proposed"] }
num-derive = "*"
num-traits = "*"
once_cell = "*"
rayon = "*"
regex = "*"
rowan = "*"
salsa = { git = "https://github.com/salsa-rs/salsa", package = "salsa-2022" }
serde = { version = "*", features = ["derive"] }
serde_json = "*"
text-size = "*"
thiserror = "*"
tracing = "*"
tracing-subscriber = "*"
tracing-tree = "*"
dock = { path = "crates/dock" }
lexer = { path = "crates/lexer" }
syntax = { path = "crates/syntax" }
parser = { path = "crates/parser" }
ast = { path = "crates/ast" }
hir = { path = "crates/hir" }
hir_ty = { path = "crates/hir_ty" }
mir = { path = "crates/mir" }
codegen_llvm = { path = "crates/codegen_llvm" }
base_db = { path = "crates/base_db" }
lsp = { path = "crates/lsp" }
diagnostic = { path = "crates/diagnostic" }
[profile.dev]
debug = 0
[profile.dev.package]
logos.opt-level = 3
rowan.opt-level = 3
text-size.opt-level = 3
la-arena.opt-level = 3