-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (41 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
[package]
name = "auto_spoiler"
description = "a discord bot that automatically puts possibly triggering words in spoilers"
version = "0.1.0"
authors = ["laralove143 <[email protected]>"]
repository = "https://github.com/laralove143/spoiler-bot"
license = "MIT"
edition = "2021"
keywords = ["discord", "bots"]
categories = ["http-client"]
[dependencies]
twilight-gateway = { version = "0.11", default-features = false, features = [
"rustls-native-roots",
"zlib-simd",
] }
twilight-http = { version = "0.11", default-features = false, features = [
"decompression",
"rustls-native-roots",
"trust-dns",
] }
twilight-model = { version = "0.11", default-features = false }
twilight-util = { version = "0.11", default-features = false, features = [
"builder",
] }
twilight-cache-inmemory = { version = "0.11", features = [
"permission-calculator"
] }
twilight-interactions = "0.11"
twilight-webhook = "0.11"
tokio = { version = "1.17.0", default-features = false, features = [
"rt-multi-thread",
"macros"
] }
sqlx = { version = "0.6", default-features = false, features = [
"macros",
"runtime-tokio-rustls",
"postgres"
] }
futures-util = "0.3"
anyhow = "1.0"
dotenvy = "0.15"