forked from rayclaw/rayclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (56 loc) · 1.84 KB
/
Cargo.toml
File metadata and controls
59 lines (56 loc) · 1.84 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
[package]
name = "rayclaw"
version = "0.1.8"
edition = "2021"
license = "MIT"
description = "Multi-channel agentic AI runtime with tool-calling, memory, and scheduling"
repository = "https://github.com/rayclaw/rayclaw"
keywords = ["ai", "agent", "llm", "chatbot", "runtime"]
categories = ["api-bindings", "asynchronous"]
[features]
default = ["telegram", "discord", "slack", "feishu"]
all = ["telegram", "discord", "slack", "feishu", "web"]
telegram = ["dep:teloxide"]
discord = ["dep:serenity"]
slack = []
feishu = []
web = ["dep:axum"]
sqlite-vec = ["dep:sqlite-vec"]
openssl-vendored = ["dep:openssl"]
[dependencies]
teloxide = { version = "0.17", features = ["macros"], optional = true }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "blocking", "stream", "multipart"] }
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
glob = "0.3"
regex = "1"
thiserror = "2"
anyhow = "1"
async-trait = "0.1"
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
serde_yaml = "0.9"
cron = "0.13"
urlencoding = "2"
base64 = "0.22"
chrono-tz = "0.10"
axum = { version = "0.7", optional = true }
dialoguer = "0.11"
console = "0.15"
serenity = { version = "0.12", default-features = false, features = ["client", "gateway", "model", "cache", "rustls_backend"], optional = true }
include_dir = "0.7"
async-stream = "0.3"
futures-util = "0.3"
tokio-tungstenite = { version = "0.24", features = ["rustls-tls-webpki-roots"] }
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
crc32fast = "1"
sqlite-vec = { version = "0.1.7-alpha.10", optional = true }
openssl = { version = "0.10", features = ["vendored"], optional = true }
[dev-dependencies]
tower = "0.5"