-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
48 lines (45 loc) · 1.2 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
workspace = { members = ["crates/gen_welcome"] }
[package]
name = "cangrebot"
version = "0.1.0"
edition = "2021"
authors = [
"Sergio Meneses <[email protected]>",
"Daniel Solarte <[email protected]>",
]
description = "A Discord Bot made with Rust from RustLangEs Community"
readme = "README.md"
[dependencies]
gen_welcome = { version = "0.1.0", path = "crates/gen_welcome" }
anyhow = "1.0.66"
axum = "0.7.5"
chrono = "0.4.38"
color-eyre = "0.6.2"
parking_lot = { version = "0.12", features = ["send_guard"] }
poise = "0.6.1"
reqwest = { version = "0.11.27", features = ["json"] } # Version used by songbird::input::YoutubeDl
regex = "1.10.2"
scraper = { version = "0.19.0", features = [
"indexmap",
"deterministic",
"atomic",
] }
serde = "1.0.188"
serde_json = "1.0.105"
songbird = { version = "0.4.1", features = ["serenity"] }
shuttle-runtime = "0.42.0"
#shuttle-secrets = "0.42.0"
#shuttle-static-folder = "0.42.0"
symphonia = { version = "0.5.3", default-features = false, features = [
"mp3",
"ogg",
"wav",
] }
time = "0.3.36"
tokio_schedule = "0.3.2"
tokio = "1.26.0"
tracing = "0.1.37"
once_cell = "1.18.0"
urlencoding = "2.1.3"
lazy_static = "1.5.0"
pistones = "0.2.1"