-
Notifications
You must be signed in to change notification settings - Fork 297
/
Copy pathCargo.toml
36 lines (34 loc) · 903 Bytes
/
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
[workspace]
resolver = "2"
members = ["crates/*"]
default-members = ["crates/code2prompt-core", "crates/code2prompt"]
[profile.release]
lto = "thin"
panic = 'abort'
codegen-units = 1
[workspace.dependencies]
anyhow = "1.0.80"
colored = "2.1.0"
indicatif = "0.17.8"
log = "0.4"
num-format = { version = "0.4.4", features = ["with-system-locale"] }
serde_json = "1.0.114"
handlebars = "4.3"
jwalk = "0.8"
termtree = "0.4"
tiktoken-rs = "0.6.0"
ignore = "0.4.22"
inquire = "0.7.1"
regex = "1.10.3"
git2 = { version = "0.18.2", default-features = false, features = [
"https",
"vendored-libgit2",
"vendored-openssl",
] }
once_cell = "1.19.0"
globset = "0.4.15"
pyo3 = { version = "0.23", features = ["extension-module", "abi3-py312"] }
clap = { version = "4.0", features = ["derive"] }
env_logger = { version = "0.11.3" }
arboard = { version = "3.4.0" }
derive_builder = { version = "0.20.2" }