-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
116 lines (97 loc) · 2.36 KB
/
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
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
[workspace]
members = [
"tools/*",
"bioma_actor",
"bioma_behavior",
"bioma_llm",
"bioma_tool",
]
resolver = "2"
default-members = ["bioma_actor"]
[profile.release]
debug = true
[profile.dev.package.askama_derive]
opt-level = 3
[workspace.dependencies]
# Async Runtime and Networking
tokio = { version = "1", features = ["full", "tracing"] }
tokio-tungstenite = "0.26"
futures = "0.3"
futures-util = "0.3"
reqwest = { version = "0.12", features = ["multipart"] }
jsonrpc-core = "18.0"
# Database and Storage
surrealdb = { version = "2.1.4", features = ["kv-mem"] }
object_store = { version = "0.11", features = ["serde"] }
# Serialization and Schema
serde = { version = "1", features = ["derive"] }
serde_json = "1"
schemars = "0.8"
bon = "3.1"
# Error Handling and Utilities
thiserror = "2.0"
anyhow = "1.0"
derive_more = "0.99"
# Logging and Debugging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"env-filter",
"fmt",
"time",
] }
tracing-appender = "0.2"
test-log = { version = "0.2", default-features = false, features = [
"trace",
"color",
] }
console-subscriber = "0.4"
color-backtrace = "0.6"
# ID Generation
uuid = "1.10"
ulid = "1.1"
# Time Handling
humantime = "2.1"
humantime-serde = "1.1"
chrono = "0.4"
# File System and Path Operations
glob = "0.3"
walkdir = "2.4"
zip = "2.2"
tempfile = "3.14.0"
# CLI and Configuration
clap = { version = "4.5", features = ["derive"] }
# Web and Parsing
url = { version = "2", features = ["serde"] }
html2md = "0.2"
readability-rs = "0.5"
robotstxt = "0.3"
# Web Framework
actix-web = "4.9.0"
actix-cors = "0.7.0"
actix-multipart = "0.7.2"
# Documentation
utoipa = "5.3.1"
# Template Engine
askama = "0.12"
# Testing
goose = { git = "https://github.com/tag1consulting/goose.git", rev = "1a8280e1a2e2a1bbd01bccc7bdcd40f7c82db73c" }
mockito = "1.6"
# Utilities
strum = "0.26"
tokio-stream = "0.1"
once_cell = "1.20"
lazy_static = "1.5"
base64 = "0.22"
rand = "0.8"
indexmap = "2.7"
# LLM
# ollama-rs = { git = "https://github.com/pepperoni21/ollama-rs.git", rev = "a1f2bb5c5161d4879b089104e8753990c832ba9c", features = [
# "function-calling",
# "stream",
# ] }
ollama-rs = { git = "https://github.com/VertexStudio/ollama-rs.git", rev = "75548313bed6a14dc046ae514d74b309215b8cd8", features = [
"stream",
] }
# ollama-rs = { path = "../ollama-rs", features = [
# "stream",
# ] }