forked from blopker/codebook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (71 loc) · 2.09 KB
/
Cargo.toml
File metadata and controls
77 lines (71 loc) · 2.09 KB
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
[workspace]
members = ["crates/codebook", "crates/codebook-config", "crates/codebook-lsp", "crates/downloader", "crates/dictionary-builder"]
resolver = "2"
[workspace.package]
version = "0.2.13"
authors = ["Codebook Contributors"]
description = "A code-aware spell checker for developers"
repository = "https://github.com/blopker/codebook"
homepage = "https://github.com/blopker/codebook"
documentation = "https://github.com/blopker/codebook"
license = "MIT"
edition = "2024"
[workspace.dependencies]
anyhow = "1.0.71"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5.26", features = ["derive"] }
dirs = "6.0.0"
env_logger = "0.11.6"
fs2 = "0.4"
git2 = "0.20.0"
glob = "0.3"
httpmock = "0.7.0"
lazy_static = "1.5.0"
log = "0.4.22"
lru = "0.16"
regex = "1.11.1"
reqwest = { version = "0.12.12", default-features = false, features = ["blocking", "rustls-tls", "json"] }
serde = { version = "1", features = ["derive", "serde_derive"] }
serde_json = "1"
sha2 = "0.10.6"
spellbook = "<0.4.0"
streaming-iterator = "0.1.9"
tempfile = "3"
thiserror = "2.0.12"
tokio = { version = "1", features = ["full"] }
toml = "0.8"
tower-lsp = "0.20.0"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
tree-sitter = "<0.26.0"
tree-sitter-bash = "<0.26.0"
tree-sitter-c = "<0.25.0"
tree-sitter-css = "<0.25.0"
tree-sitter-go = "<0.25.0"
tree-sitter-haskell = "<0.25.0"
tree-sitter-html = "<0.25.0"
tree-sitter-javascript = "<0.25.0"
tree-sitter-php = "<0.24.0"
tree-sitter-python = "<0.25.0"
tree-sitter-r = "1.1.0"
tree-sitter-ruby = "0.23.1"
tree-sitter-rust = "<0.25.0"
tree-sitter-toml-ng = "<0.8.0"
tree-sitter-typescript = "0.23.2"
unicode-segmentation = "1.12.0"
url = "2.4.0"
walkdir = "2.3.3"
pprof = { version = "0.15", features = ["flamegraph"] }
codebook = { path = "crates/codebook", version = "0.3.0" }
codebook_config = { path = "crates/codebook-config", version = "0.3.0" }
codebook_downloader = { path = "crates/downloader", version = "0.3.0" }
[profile.release]
lto = "thin"
# debug=true
[profile.fast-release]
inherits = "release"
opt-level = 0
lto = false
panic = 'unwind'
incremental = true
codegen-units = 256