-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
96 lines (94 loc) · 2.09 KB
/
Cargo.toml
File metadata and controls
96 lines (94 loc) · 2.09 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
[package]
name = "agent-kitten"
version = "3.4.11"
edition = "2024"
[dependencies]
serenity = { version = "0.12.5", features = [
"builder",
"cache",
"collector",
"client",
"framework",
"gateway",
"http",
"model",
"utils",
"voice",
"simd_json",
"temp_cache",
"chrono",
"interactions_endpoint",
"native_tls_backend",
"default_native_tls",
], default-features = false }
poise = { version = "0.6.2", features = [
"cache",
"chrono",
"handle_panics",
], default-features = false }
tokio = { version = "1.52.1", features = [
"rt-multi-thread",
"macros",
"signal",
"time",
"sync",
"process",
"fs",
"net",
] }
tokio-tungstenite = { version = "0.29.0", features = [
"native-tls",
"tokio-native-tls",
] }
native-tls = { version = "0.2.18" }
simd-json = { version = "0.17.0" }
songbird = { version = "0.6.0", features = [
"gateway",
"serenity",
"native",
"builtin-queue",
], default-features = false }
symphonia = { version = "0.5.5", features = ["opt-simd"] }
lavalink-rs = { version = "0.15.0", features = [
"songbird",
"serenity",
"macros",
"tungstenite-native-tls",
], default-features = false }
sysinfo = { version = "0.38.4" }
chrono = { version = "0.4.44" }
mongodb = { version = "3.6.0" }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149" }
serde_with = { version = "3.18.0" }
futures = { version = "0.3.32" }
async-openai = { version = "0.36.0", features = [
"native-tls",
"webhook",
"responses",
"audio",
"video",
"image",
"embedding",
"model",
"chatkit",
"container",
"chat-completion",
"completions",
], default-features = false }
once_cell = { version = "1.21.4" }
rand = { version = "0.10.1" }
bson = { version = "3.1.0", features = [
"serde",
"serde_json-1",
"compat-3-0-0",
"serde_with-3",
] }
reqwest = { version = "0.13.2", features = ["native-tls", "json"] }
urlencoding = { version = "2.1.3" }
base64 = { version = "0.22.1" }
bytes = { version = "1.11.1" }
human_bytes = { version = "0.4.3" }
html-to-markdown-rs = { version = "3.3.3" }
[build-dependencies]
barexp = { version = "1.1.1" }