aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: e8f8d24e0bfcb37eba5a31b84e86345fe6a1e8e8 (plain) (blame)
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
[package]
name = "dos_bot"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
readme = "README.rst"
homepage = "https://github.com/fuwn/dos-bot"
repository = "https://github.com/fuwn/dos-bot"
license = "GPL-3.0-only"
keywords = ["rust", "assembly", "discord"]
publish = false

[dependencies]
# Discord
serenity = { version = "0.10.8", features = ["cache", "framework", "standard_framework", "rustls_backend"] }

# Utility
dotenv = "0.15.0"
tokio = { version = "1.7.1", features = ["macros", "signal", "rt-multi-thread"] }
config = "0.11.0"

# Serialization
serde = "1.0.126"
serde_derive = "1.0.126"

# Database
redis = "0.20.2"

# Logging
log = "0.4.14"
pretty_env_logger = "0.4.0"