-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (62 loc) · 1.62 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (62 loc) · 1.62 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
[workspace]
members = ["xtask/", "crates/*"]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT"
authors = ["Guzmán Monné"]
[profile.dev]
# Disabling debug info speeds up builds.
debug = 0
[profile.release]
incremental = true
# Set this to 1 or 2 to get more useful backtraces in debugger.
debug = 0
[workspace.dependencies]
mcptools_core = { version = "0.0.0", path = "crates/core" }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
clap = { version = "4.5.48", features = ["derive", "string", "env"] }
color-eyre = "0.6.5"
env_logger = "0.11.8"
thiserror = "2.0.17"
tokio = { version = "1.47.1", features = ["full"] }
anstream = "0.6.20"
prettytable = "0.10.0"
futures = "0.3.31"
reqwest = { version = "0.12.23", features = ["json", "multipart"] }
regex = "1.11.3"
chrono = "0.4.42"
axum = "0.8.6"
tower-http = { version = "0.6.6", features = ["cors"] }
colored = "3.0.0"
headless_chrome = "1.0.18"
html2md = "0.2.15"
scraper = "0.24.0"
base64 = "0.22.1"
html-escape = "0.2.13"
md5 = "0.8.0"
dirs-next = "2.0.0"
urlencoding = "2.1.1"
indicatif = "0.17"
rig-core = "0.31.0"
lopdf = "0.39"
unicode-normalization = "0.1"
pdf = { version = "0.1.0", path = "crates/pdf" }
rand = "0.8"
image = { version = "0.25", default-features = false, features = ["png"] }
fax = "0.2"
shlex = "1.3"
tree-sitter = "0.24"
tree-sitter-rust = "0.23"
tree-sitter-javascript = "0.23"
tree-sitter-typescript = "0.23"
tree-sitter-python = "0.23"
tree-sitter-go = "0.23"
async-channel = "2.3"
globset = "0.4"
ignore = "0.4"
rusqlite = { version = "0.34", features = ["bundled"] }
sha2 = "0.10"
terminal_size = "0.4"
toml = "0.8"