-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (34 loc) · 1.31 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
[package]
name = "discord-xiv-emotes"
version = "0.1.0"
edition = "2021"
authors = ["Mattori Birnbaum <[email protected]>"]
description = "A Discord bot that responds with emote log messages from FFXIV"
repository = "https://github.com/PsychicNoodles/discord-xiv-emotes"
license = "GNU GPLv3"
keywords = ["discord", "bot"]
[lib]
## run project with `cargo shuttle run`, to run without shuttle uncomment below and then `cargo run`
[[bin]]
name = "discord-xiv-emotes"
path = "src/bin.rs"
[dependencies]
xiv-emote-parser = { version = "0.1", features = ["xivapi"] }
serenity = { version = "0.11.5", default-features = false, features = ["client", "gateway", "model", "cache", "utils", "rustls_backend", "collector"] }
tokio = { version = "1.20", features = ["macros", "rt-multi-thread", "sync"] }
dotenvy = "0.15"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
futures = "0.3"
# shuttle-secrets = "0.7"
# shuttle-service = { version = "0.7", features = ["bot-serenity"] }
# shuttle-shared-db = { version = "0.7", features = ["postgres"] }
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "postgres", "time", "offline"] }
time = "0.3"
strum = "0.24"
strum_macros = "0.24"
async-trait = "0.1"
const_format = "0.2"
[profile.dev.package.sqlx-macros]
opt-level = 3