-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (57 loc) · 1.35 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (57 loc) · 1.35 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
[workspace]
members = ["crates/core", "crates/arey", "crates/tools-search", "crates/tools-fetch", "crates/mcp"]
resolver = "2"
[workspace.package]
version = "0.0.7"
edition = "2024"
authors = ["Your Name <you@example.com>"]
description = "LLM tool"
readme = "README.md"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
anyhow = { version = "1.0", features = ["backtrace"] }
async-openai = { version = "0.41.1", features = ["byot", "chat-completion"] }
async-stream = "0.3"
async-trait = "0.1.89"
chrono = "0.4"
clap = { version = "4.6.1", features = ["derive"] }
dirs = "6.0"
encoding_rs = "0.8.35"
env_logger = "0.11"
futures = "0.3"
home = "0.5"
lazy_static = "1.4.0"
markdown = "1.0.0"
notify = "8.2.0"
once_cell = "1.21.4"
path-absolutize = "3.1"
rand = "0.10.1"
regex = "1.12.3"
reqwest = { version = "^0.12", default-features = false, features = [
"rustls-tls-native-roots",
"json",
"http2",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
shellexpand = "3.1.2"
thiserror = "2.0"
tokio = { version = "1.52", features = [
"macros",
"rt-multi-thread",
"sync",
"signal",
"time",
"process",
] }
tokio-stream = "0.1.18"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"local-time",
"env-filter",
] }
tempfile = "3.27.0"
url = "2.5.7"
wiremock = "0.6.5"
yare = "3"