-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (38 loc) · 1.12 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
[package]
name = "rust-discord-record"
version = "0.3.4"
authors = ["Frank <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
# compile all dependencies as release, even in dev mode.
# this still leaves our application code in debug mode.
[profile.dev.package."*"]
opt-level = 3
[dependencies]
anyhow = "1"
async-trait = "0.1"
audiopus = "0.3.0-rc.0"
byteorder = "1"
chrono = "0.4"
circular-queue = "0.2"
humantime = "2"
ogg = "0.9"
#ogg-opus = "0.1" # embedded as encode.rs with modifications
rand = "0.8"
songbird = { version = "0.4", features = ["receive", "builtin-queue"] }
tracing = "0.1"
tracing-subscriber = "0.3"
tokio = { version = "1", features = ["full"] }
poise = "0.6.1"
nohash-hasher = "0.2.0"
dashmap = "5.5.3"
reqwest = { version = "0.12.2", features = ["multipart"] }
bytes = "1.6.0"
symphonia = "0.5.4"
[dependencies.serenity]
version = "0.12"
features = ["cache", "http", "client", "framework", "voice", "rustls_backend"]
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.5"