-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (61 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
63 lines (61 loc) · 1.54 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
[package]
name = "squid-rs"
version = "0.10.0"
description = "An AI-powered command-line tool for code reviews and suggestions."
repository = "https://github.com/DenysVuika/squid"
authors = ["Denys Vuika <denys.vuika@gmail.com>"]
license = "Apache-2.0"
edition = "2024"
keywords = ["ai", "code-review", "command-line", "developer-tools"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
include = [
"/src",
"/static",
"/migrations",
"/documents",
"/.squidignore.example",
"/squid.config.json.example",
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/CHANGELOG.md",
"/LICENSE",
]
[[bin]]
name = "squid"
path = "src/main.rs"
[dependencies]
actix-web = "4.13"
actix-files = "0.6"
actix-cors = "0.7"
async-openai = { version = "0.32", features = ["chat-completion"] }
async-stream = "0.3"
chrono = "0.4"
clap = { version = "4.5", features = ["derive"] }
console = "0.16"
dotenvy = "0.15.7"
env_logger = "0.11.8"
futures = "0.3"
indicatif = "0.18"
inquire = "0.9"
mime_guess = "2.0"
rust-embed = "8.5"
log = "0.4.29"
regex = "1.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.149"
sysinfo = "0.38.1"
thiserror = "2.0"
tokio = { version = "1.0", features = ["full"] }
uuid = { version = "1.0", features = ["v4", "serde"] }
walkdir = "2.5"
rusqlite = { version = "0.38.0", features = ["bundled", "load_extension"] }
tiktoken-rs = "0.9.1"
flate2 = "1.0"
sha2 = "0.10"
reqwest = { version = "0.13", features = ["json"] }
rig-core = "0.2"
notify = "6.0"
anyhow = "1.0"
sqlite-vec = "0.1"