-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (44 loc) · 1.21 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
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "murgi_bot"
version = "0.1.0"
authors = ["Datta Adithya <dat.adithya@gmail.com>"]
edition = "2021"
rust-version = "1.56.0"
description = "A Jackett-wearing Murgi. The Discord Bot that gets you howls, DnD dice, and torrents."
readme = "README.md"
repository = "https://github.com/dat-adi/MurgiBot/"
license-file = "LICENSE"
keywords = ["discord", "bot", "torrents", "serenity"]
categories = ["web-programming::websocket"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1"
rss = "2.0"
rand = "0.8.4"
tracing = "0.1.23"
tracing-subscriber = "0.2"
serde_json = "1.0"
serde-this-or-that = "0.4"
config = "0.13.2"
lazy_static = "1.4"
[dependencies.openssl]
version = "0.10.29"
features = ["vendored"]
[dependencies.songbird]
version = "0.2.0"
[dependencies.reqwest]
version = "0.11"
features = ["json"]
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.serenity]
version = "0.10.9"
features = ["client", "gateway", "standard_framework", "model", "cache", "voice", "rustls_backend"]
[dependencies.chrono]
version = "0.4.19"
default-features = false
features = ["clock"]
[dependencies.serde]
version = "1"
features = ["derive"]