-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (39 loc) · 1.05 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (39 loc) · 1.05 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
[workspace]
resolver = "2"
members = ["crates/ctx-symbol", "crates/ctx-exec", "crates/ctxctl"]
[workspace.package]
version = "0.3.3"
edition = "2024"
license = "MIT"
authors = ["fuyu"]
repository = "https://github.com/Xuepoo/ctxctl"
homepage = "https://ctxctl.xuepoo.xyz"
[workspace.dependencies]
ctx-symbol = { path = "crates/ctx-symbol", version = "0.3.3" }
ctx-exec = { path = "crates/ctx-exec", version = "0.3.3" }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tree-sitter = "0.26"
tree-sitter-rust = "0.24"
tree-sitter-typescript = "0.23"
tree-sitter-python = "0.25"
tree-sitter-go = "0.25"
tree-sitter-javascript = "0.25"
tree-sitter-java = "0.23"
tree-sitter-c = "0.24"
tree-sitter-cpp = "0.23"
tree-sitter-c-sharp = "0.23"
tree-sitter-ruby = "0.23"
tree-sitter-lua = "0.5"
tree-sitter-html = "0.23"
tree-sitter-css = "0.25"
tree-sitter-md = "0.5"
regex = "1"
shell-words = "1"
toml = "1.1"
tiktoken-rs = "0.12"
# rustflags shared across the workspace
[profile.release]
lto = "thin"
strip = "symbols"