-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
42 lines (39 loc) · 1.26 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
[package]
name = "wallace-minion"
version = "0.13.5"
edition = "2021"
[workspace]
resolver = "2"
members = [".", "prisma-cli"]
[dependencies]
anyhow = "1"
async-openai = "0.25"
async-trait = "0.1"
base64 = "0.22"
chrono = { version = "0.4.28", default-features = false }
cron = "0.12"
rand = "0.8"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
riven = { version = "2.48", default-features = false, features = ["rustls-tls"] }
serde = "1"
serde_json = "1"
serenity = { version = "=0.12.0", default-features = false, features = [
"cache",
"chrono",
"gateway",
"rustls_backend",
"standard_framework",
"voice",
] }
shuttle-runtime = "0.48.0"
songbird = { version = "0.4.0", features = ["builtin-queue"] }
sqlx = { version = "0.8.2", default-features = false, features = ["macros", "postgres", "runtime-tokio", "tls-rustls"] }
strum = { version = "0.26", features = ["derive"] }
symphonia = { version = "0.5.3", default-features = false, features = ["ogg"] }
tokio = { version = "1", features = ["rt-multi-thread", "sync", "time"] }
tracing = "0.1"
[workspace.dependencies.prisma-client-rust-cli]
git = "https://github.com/Brendonovich/prisma-client-rust"
tag = "0.6.11"
default-features = false
features = ["postgresql"]