-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
38 lines (36 loc) · 982 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
37
38
[package]
name = "glimpse"
version = "0.7.0"
edition = "2021"
description = "A blazingly fast tool for peeking at codebases. Perfect for loading your codebase into an LLM's context."
license = "MIT"
build = "build.rs"
[dependencies]
anyhow = "1.0.95"
arboard = { version = "3.4.1", features = ["wayland-data-control"] }
base64 = "0.22.1"
clap = { version = "4.5.23", features = ["derive"] }
colored = "2.2.0"
crossterm = "0.28.1"
dirs = "5.0.1"
globset = "0.4.15"
ignore = "0.4.23"
indicatif = "0.17.9"
once_cell = "1.20.2"
printpdf = "0.7.0"
ratatui = "0.29.0"
rayon = "1.10.0"
serde = { version = "1.0.217", features = ["derive"] }
tempfile = "3.14.0"
tiktoken-rs = "0.6.0"
tokenizers = { version = "0.21.0", features = ["http"] }
toml = "0.8.19"
walkdir = "2.5.0"
reqwest = { version = "0.11", features = ["blocking"] }
scraper = "0.18"
url = "2.5"
git2 = "0.18"
mockito = "1.4"
[build-dependencies]
serde = { version = "1.0.217", features = ["derive"] }
serde_yaml = "0.9.34"