-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 821 Bytes
/
Cargo.toml
File metadata and controls
40 lines (37 loc) · 821 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
[workspace]
members = [
"crates/diagnostic",
"crates/cli",
"crates/syntax",
"crates/semantic",
"crates/engine",
"crates/lsp",
]
resolver = "2"
[workspace.package]
version = "0.0.5"
edition = "2024"
license = "MIT"
repository = "https://github.com/KercyDing/only"
documentation = "https://github.com/KercyDing/only"
readme = "README.md"
[workspace.dependencies]
anstyle = "1.0"
clap = { version = "4.6", features = ["color", "std", "string"] }
deno_task_shell = "0.30"
logos = "0.16"
miette = { version = "7.6", features = ["fancy"] }
rowan = "0.16"
self-replace = "1.5"
smol_str = "0.3"
text-size = "1.1"
tokio = { version = "1.52", features = ["rt"] }
winnow = "1.0"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true
debug = false
panic = "abort"
incremental = false