tenebrous-dicebot/Cargo.toml

29 lines
674 B
TOML
Raw Normal View History

2020-04-17 05:20:54 +00:00
[package]
name = "axfive-matrix-dicebot"
2020-04-22 04:50:07 +00:00
version = "0.1.2"
2020-04-17 05:20:54 +00:00
authors = ["Taylor C. Richberger <taywee@gmx.com>"]
edition = "2018"
2020-04-22 04:34:50 +00:00
license = 'MIT'
description = 'A simple async Matrix dicebot'
readme = 'README.md'
repository = 'https://gitlab.com/Taywee/axfive-matrix-dicebot'
keywords = ["games", "dice", "matrix", "bot"]
categories = ["games"]
2020-04-17 05:20:54 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[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-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"]