-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (41 loc) · 1 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
[package]
name = "withinbot"
version = "0.1.0"
authors = ["Christine Dodrill <[email protected]>"]
edition = "2018"
license-file = "LICENSE"
description = "A bot for Within"
homepage = "https://github.com/Xe/withinbot"
repository = "https://github.com/Xe/withinbot"
readme = "README.md"
[dependencies]
anyhow = "1"
beats = "0.1"
diesel = { version = "1.4", features = ["sqlite"] }
dnd_dice_roller = "0.3.0"
envy = "0.4"
env_logger = "0"
furbooru = "0.3"
kankyo = "0.3"
log = "0.4"
pfacts = "0"
rand = "0"
reqwest = { version = "0.10", features = ["json"] }
systemd = "0.8"
sdnotify = "0.1"
serde = { version = "1", features = ["derive"] }
tokio = { version = "0.2", features = ["macros"] }
# in-repo packages
discord_webhook = { path = "./discord_webhook" }
six_e = { path = "./six_e" }
[dependencies.serenity]
version = "0.9.1"
features = ["cache", "framework", "standard_framework", "gateway"]
[workspace]
members = [
"./discord_webhook",
"./contrib/lua/discord_webhook",
"./six_e"
]
[profile.release]
lto = true