This repository has been archived by the owner on Oct 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
64 lines (58 loc) · 1.56 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
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "smexybot"
version = "0.1.0"
authors = ["Nikita Pekin <[email protected]>"]
build = "build.rs"
[build-dependencies.serde_codegen]
optional = true
version = "0.8.21"
[dependencies]
chrono = { features = ["serde"], version = "0.2.25" }
clippy = { optional = true, version = "0.0" }
env_logger = "0.3.5"
hyper = "0.9.14"
lazy_static = "0.2.2"
log = "0.3.6"
markov = { optional = true, version = "0.0.32" }
psutil = { optional = true, version = "1.0.0" }
rand = "0.3.15"
regex = "0.1.80"
serde = "0.8.21"
serde_derive = { optional = true, version = "0.8.21" }
serde_json = "0.8.4"
time = { optional = true, version = "0.1.35" }
typemap = "0.3.3"
url = "1.2.4"
uuid = { features = ["v4"], optional = true, version = "0.3.1" }
[dependencies.serenity]
features = ["cache", "framework", "methods", "voice"]
git = "https://github.com/zeyla/serenity.rs"
[dependencies.wolfram_alpha]
default-features = false
features = ["hyper"]
optional = true
version = "0.3.0"
[dependencies.xkcd]
default-features = false
features = ["hyper"]
optional = true
version = "0.2.1"
[features]
all = ["fuyu", "help", "ping", "roll", "stats", "tag", "wolfram", "xkcd"]
default = ["with-syntex"]
fuyu = ["markov"]
fuyu-include = ["fuyu"]
help = []
ping = ["time"]
roll = []
stats = ["psutil"]
tag = ["uuid"]
wolfram = ["wolfram_alpha"]
nightly = ["serde_derive", "wolfram_alpha/nightly", "xkcd/nightly"]
nightly-testing = [
"clippy",
"nightly",
"wolfram_alpha/nightly-testing",
"xkcd/nightly-testing",
]
with-syntex = ["serde_codegen", "wolfram_alpha/with-syntex", "xkcd/with-syntex"]