-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
120 lines (107 loc) · 2.88 KB
/
Cargo.toml
File metadata and controls
120 lines (107 loc) · 2.88 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[workspace]
resolver = "2"
members = ["xtask"]
[workspace.package]
edition = "2024"
license = "MIT"
homepage = "https://github.com/hcengineering/huly-ai"
repository = "https://github.com/hcengineering/huly-ai"
[package]
name = "huly-ai-agent"
version = "0.1.0"
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
authors = [
"Konstantin Zaitsev <kos@hardcoreeng.com>",
"Nikolay Marchuk <nikolay.marchuk@hardcoreeng.com>",
]
description = "AI Agent for Huly platform"
publish = false
[dependencies]
# system
tokio = { version = "1.44.2", features = ["full"] }
tokio-util = "0.7.16"
anyhow = "1.0"
config = { version = "0.15.11", default-features = false, features = ["yaml"] }
clap = { version = "4.5", features = ["derive"] }
itertools = "0.14.0"
tracing = "0.1.40"
tracing-appender = "0.2"
tracing-subscriber = "0.3.18"
tracing-log = "0.2"
serde = "1.0"
serde_json = "1.0"
serde_yml = "0.0.12"
secrecy = { version = "0.10.3", features = ["serde"] }
dotenv = "0.15.0"
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "chrono"] }
indexmap = "2.10.0"
bytes = "1.10"
cron = "0.15.0"
rand = "0.9.2"
wildcard = "0.3.0"
actix-web = { version = "4.10.2", features = ["rustls-0_23"] }
actix-cors = "0.7.1"
dashmap = "6.1.0"
regex = "1.12.2"
# OpenTelemetry
opentelemetry = "0.30.0"
opentelemetry-stdout = { version = "0.30.0" }
opentelemetry_sdk = "0.30.0"
opentelemetry-otlp = { version = "0.30.0", features = ["tokio"] }
tracing-opentelemetry = "0.31.0"
opentelemetry-appender-tracing = "0.30.1"
# LLM providers
reqwest = { version = "0.12.20", default-features = false, features = [
"json",
"stream",
"rustls-tls",
"multipart",
] }
reqwest-middleware = { version = "0.4", features = [
"json",
"rustls-tls",
"multipart",
] }
reqwest-tracing = { version = "0.5.8", features = ["opentelemetry_0_30"] }
async-stream = "0.3.6"
futures = "0.3.31"
async-trait = "0.1.88"
subst = "0.3.7"
# tools
## files
diffy = "0.4.2"
ignore = "0.4"
grep-searcher = "0.1.14"
grep-regex = "0.1.13"
grep-printer = "0.2.2"
## memory
sqlite-vec = "0.1.6"
libsqlite3-sys = "0.30.1"
zerocopy = "0.8.26"
paste = "1.0.15"
## command tools
process-wrap = { version = "8.2.1", features = ["tokio1"] }
## web search and fetch related
percent-encoding = "2.3.1"
htmd = "0.2.2"
## browser
tokio-tungstenite = "0.27.0"
base64 = "0.22.1"
## mcp
mcp-core = { git = "https://github.com/kosz78/mcp-core.git", branch = "main", optional = true, features = [
"sse",
] }
## huly
hulyrs = { git = "https://github.com/hcengineering/hulyrs.git", branch = "master" }
chrono = { version = "0.4.40", features = ["serde"] }
chrono-tz = "0.10.4"
mime_guess = "2.0.5"
uuid = { version = "1.16.0", features = ["v4"] }
streaming = { git = "https://github.com/hcengineering/huly-ai-cloud.git", branch = "main", optional = true }
[features]
default = ["mcp"]
mcp = ["dep:mcp-core"]
streaming = ["dep:streaming"]