-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (33 loc) · 845 Bytes
/
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
[workspace]
resolver = "2"
members = ["app", "core"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.package]
authors = ["Cassiano Rodrigues <kszinhu@modscleo4.dev.br>"]
edition = "2021"
[workspace.dependencies]
# Discord
serenity = { default-features = false, features = [
"cache",
"client",
"http",
"framework",
"standard_framework",
"gateway",
"voice",
"rustls_backend",
"model",
"collector",
], version = "0.12" }
songbird = { features = ["builtin-queue"], version = "0.4" }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
tracing-futures = "0.2"
# Other
lazy_static = "*"
once_cell = { version = "*", features = ["std"] }
[profile.ephemeral-build]
opt-level = 1
codegen-units = 8
inherits = "release"