-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
29 lines (26 loc) · 900 Bytes
/
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
[package]
name = "disle"
version = "1.2.5"
authors = ["Geobert Quach <[email protected]>"]
edition = "2018"
description = "A Discord dice roller bot with alias management"
keywords = ["dice", "roll", "RPG", "discord", "bot"]
categories = ["games"]
repository = "https://github.com/Geobert/disle"
license = "MIT"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.12.0", features = ["macros", "signal", "rt-multi-thread"] }
caith = { version = "4.2.2", features = ["ova", "cde", "cards"] }
# caith = { path = "../caith", features = ["ova", "cde", "cards"] }
ron = "0.7.0"
serde = { version = "1.0.130", features = ["serde_derive"] }
futures = "0.3.17"
[dependencies.serenity]
version = "0.10.9"
optional = true
[features]
default = ["discord", "cards"]
discord = ["serenity"]
cards = []