forked from projectmoon/tenebrous-dicebot
29 lines
674 B
TOML
29 lines
674 B
TOML
[package]
|
|
name = "axfive-matrix-dicebot"
|
|
version = "0.1.2"
|
|
authors = ["Taylor C. Richberger <taywee@gmx.com>"]
|
|
edition = "2018"
|
|
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"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
reqwest = "0.10"
|
|
serde_json = "1"
|
|
toml = "0.5"
|
|
nom = "5"
|
|
rand = "0.7"
|
|
|
|
[dependencies.serde]
|
|
version = "1"
|
|
features = ['derive']
|
|
|
|
[dependencies.tokio]
|
|
version = "0.2"
|
|
features = ["rt-core", "macros", "time", "signal"]
|