-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (46 loc) · 1.28 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
[workspace]
members = [
"crates/bl*",
]
resolver = "2"
[workspace.package]
authors = ["Alexander Fedotov <alexander.fedotov.uk@gmail.com>"]
edition = "2024"
[workspace.dependencies]
bl_ast = { path = "crates/bl_ast" }
bl_diagnostics = { path = "crates/bl_diagnostics" }
bl_lints = { path = "crates/bl_lints" }
bl_utils = { path = "crates/bl_utils" }
bl_macros = { path = "crates/bl_macros" }
bl_workspace = { path = "crates/bl_workspace" }
anyhow = { version = "1.0.80" }
argfile = { version = "0.2.0" }
bitflags = { version = "2.5.0" }
clap = { version = "4.5.3", features = ["derive"] }
colored = { version = "2.1.0" }
convert_case ="0.4"
derive_more = "0.99.18"
globset = "0.4.14"
ignore = "0.4.22"
index_vec = "0.1.3"
itertools = "0.13.0"
line-span = "0.1.5"
log = { version = "0.4", features = ["kv_unstable", "kv_serde"] }
once_cell = "1.19.0"
parking_lot = "0.12"
path-absolutize = "3.1.1"
proc-macro2 = "1.0.63"
quote = "1.0"
replace_with = "0.1.7"
syn = { version = "1.0", features = ["extra-traits", "full"] }
thin-vec = "0.2.13"
wild = { version = "2" }
[profile.release]
opt-level = 3
lto = "fat"
debug-assertions = false
overflow-checks = false
# strip any symbols from the executable, this makes backtraces un-readable
strip = false
# set debug to true when profiling
debug = false