-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (49 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
57 lines (49 loc) · 1.28 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
[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.5" }
# Database
postgres = { version = "0.19" }
tokio-postgres = { version = "0.7.10" }
diesel = { version = "2", features = ["postgres", "chrono", "uuid"] }
diesel_migrations = { version = "2" }
chrono = { version = "0.4", features = ["serde"] }
# Internationalization
rust-i18n = { version = "3" }
serde_yaml = "*"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
tracing-futures = "0.2"
# Other
reqwest = { version = "0.12", default-features = false, features = [
"blocking",
"json",
"rustls-tls-native-roots",
] }
lazy_static = "*"
once_cell = { version = "*", features = ["std"] }
downcast = "*"
dotenvy = "0.15.7"
[profile.ephemeral]
opt-level = 1
codegen-units = 8
inherits = "release"