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
|
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "5.25.1"
license = "GPL-3.0"
authors = [
"Eric Förster <eric.foerster@outlook.com>",
"Patrick Förster <patrick.foerster@outlook.de>",
]
edition = "2024"
rust-version = "1.89"
[workspace.dependencies]
anyhow = "1.0.95"
bstr = "1.11.0"
chrono = { version = "0.4.39", default-features = false }
clap = "4.5.23"
crossbeam-channel = "0.5.15"
dirs = ">= 5.0.0, < 7"
encoding_rs = "0.8.35"
encoding_rs_io = "0.1.7"
expect-test = "1.5.1"
fern = "0.7.0"
flate2 = "1.1.0"
human_name = "2.0.4"
isocountry = "0.3.2"
itertools = ">= 0.13.0"
libc = "0.2.169"
log = "0.4.26"
logos = "0.15.1"
lsp-server = "0.7.9"
lsp-types = "0.97.0"
multimap = "0.10.1"
notify = "8.0.0"
notify-debouncer-full = "0.5.0"
once_cell = "1.20"
parking_lot = "0.12"
pathdiff = "0.2.3"
percent-encoding = "2.3.2"
rayon = "1.11.0"
regex = "1.12.2"
rowan = "0.16.1"
rustc-hash = "1.1"
serde = "1.0.217"
serde_json = "1.0.139"
serde_regex = "1.1.0"
serde_repr = "0.1.20"
shellexpand = "3.1.0"
tempfile = "3.15"
thiserror = "2.0.11"
threadpool = "1.8.1"
titlecase = "2.2.0"
unicode-normalization = "0.1.24"
url = "2.5.2"
versions = "6.0.0"
[profile.release]
lto = "thin"
incremental = true
[profile.bench]
lto = "thin"
incremental = true
|