-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
99 lines (83 loc) · 1.96 KB
/
Cargo.toml
File metadata and controls
99 lines (83 loc) · 1.96 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[package]
edition = "2021"
name = "riveting-bot"
repository = "https://github.com/Samzyre/riveting-bot"
version = "0.4.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
path = "src/lib/lib.rs"
[profile.release]
codegen-units = 64
incremental = true
[profile.prod]
codegen-units = 4
incremental = false
inherits = "release"
lto = true
strip = true
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
dateparser = "0.2"
futures = "0.3"
indoc = "2.0"
rand = "0.8"
serde = "1.0"
serde_json = "1.0"
simple_env_load = "0.2"
thiserror = "1.0"
tracing = "0.1"
twilight-cache-inmemory = "0.15"
twilight-gateway = "0.15"
twilight-http = "0.15"
twilight-mention = "0.15"
twilight-model = "0.15"
twilight-standby = "0.15"
twilight-validate = "0.15"
[dependencies.twilight-util]
features = ["builder", "permission-calculator"]
version = "0.15"
[dependencies.derive_more]
features = ["full"]
version = "1.0"
[dependencies.reqwest]
default-features = false
features = ["json"]
version = "0.11"
[dependencies.chrono]
default-features = false
features = ["std", "clock"]
version = "0.4"
[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"
[dependencies.tokio]
features = ["rt", "rt-multi-thread", "time", "macros", "sync", "signal"]
version = "1.17"
[dependencies.songbird]
default-features = false
features = ["driver", "gateway", "twilight", "rustls", "builtin-queue"]
optional = true
version = "0.4"
# git = "https://github.com/serenity-rs/songbird"
# rev = "4fe23788e859a44a3f29987bff26c2612e74dcc5"
# branch = "next"
[dependencies.symphonia]
features = ["all"]
optional = true
version = "0.5"
[features]
# Default features
default = ["user", "admin", "owner"]
# Debugging features
debug = ["all-intents", "bulk-delete"]
# Full set of features
full = ["user", "admin", "owner", "debug", "voice"]
# Defaults
admin = []
owner = []
user = []
# Extras
all-intents = []
bulk-delete = []
voice = ["dep:songbird", "dep:symphonia"]