aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorNathan Perry <avaglir@gmail.com>2019-03-08 16:57:27 -0500
committerNathan Perry <avaglir@gmail.com>2019-03-08 16:57:27 -0500
commit86025df1f6d814c98a14211ceb4da6cf6de915c7 (patch)
treec615b6634eea05498d772f68aec2d52fa3ca4f01 /Cargo.toml
parent24a7cb3c8eb0517b69c145170765c891a82ccc76 (diff)
first pass with oauth
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 7b8bc33..a102eaa 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,7 +4,8 @@ version = "0.1.6"
authors = ["Nathan Perry <avaglir@gmail.com>"]
[features]
-default = ["diesel"]
+default = ["diesel", "games"]
+games = ["oauth2"]
[dependencies]
lazy_static = "~1.3"
@@ -25,10 +26,13 @@ reqwest = "^0.9"
sha1 = { version = "^0.6", features = ["std"] }
regex = "~1.1"
itertools = "^0.8"
+serde = { version = "~1.0", features = ["derive"] }
serde_json = "~1.0"
timeago = "^0.1"
nom = { version = "~4.2", features = ["verbose-errors"] }
statrs = "^0.10"
+fnv = "~1.0"
+oauth2 = { version = "~1.3", optional = true }
[dependencies.serenity]
default-features = false