2020-04-17 05:20:54 +00:00
|
|
|
[package]
|
2020-08-23 21:19:38 +00:00
|
|
|
name = "chronicle-dicebot"
|
|
|
|
version = "0.2.0"
|
|
|
|
authors = ["Taylor C. Richberger <taywee@gmx.com>", "projectmoon <projectmoon@agnos.is>"]
|
2020-04-17 05:20:54 +00:00
|
|
|
edition = "2018"
|
2020-04-22 04:34:50 +00:00
|
|
|
license = 'MIT'
|
|
|
|
description = 'A simple async Matrix dicebot'
|
|
|
|
readme = 'README.md'
|
2020-08-23 21:19:38 +00:00
|
|
|
repository = 'https://github.com/ProjectMoon/matrix-dicebot'
|
2020-04-22 04:34:50 +00:00
|
|
|
keywords = ["games", "dice", "matrix", "bot"]
|
|
|
|
categories = ["games"]
|
2020-04-17 05:20:54 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-04-20 06:32:57 +00:00
|
|
|
reqwest = "0.10"
|
|
|
|
serde_json = "1"
|
|
|
|
toml = "0.5"
|
|
|
|
nom = "5"
|
2020-04-20 16:02:26 +00:00
|
|
|
rand = "0.7"
|
2020-08-21 21:49:22 +00:00
|
|
|
thiserror = "1.0"
|
|
|
|
itertools = "0.9"
|
2020-04-17 05:20:54 +00:00
|
|
|
|
|
|
|
[dependencies.serde]
|
2020-04-20 06:32:57 +00:00
|
|
|
version = "1"
|
2020-04-17 05:20:54 +00:00
|
|
|
features = ['derive']
|
|
|
|
|
|
|
|
[dependencies.tokio]
|
2020-04-20 06:32:57 +00:00
|
|
|
version = "0.2"
|
2020-04-17 05:20:54 +00:00
|
|
|
features = ["rt-core", "macros", "time", "signal"]
|