2020-04-17 05:20:54 +00:00
|
|
|
[package]
|
2020-08-23 21:19:38 +00:00
|
|
|
name = "chronicle-dicebot"
|
2021-02-04 19:37:22 +00:00
|
|
|
version = "0.9.0"
|
2020-08-23 21:19:38 +00:00
|
|
|
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-08-28 00:13:01 +00:00
|
|
|
log = "0.4"
|
2021-02-09 21:55:24 +00:00
|
|
|
env_logger = "0.8"
|
2020-04-20 06:32:57 +00:00
|
|
|
toml = "0.5"
|
|
|
|
nom = "5"
|
2021-02-09 21:55:24 +00:00
|
|
|
rand = "0.8"
|
2020-08-21 21:49:22 +00:00
|
|
|
thiserror = "1.0"
|
2021-02-09 21:55:24 +00:00
|
|
|
itertools = "0.10"
|
2020-08-27 00:05:19 +00:00
|
|
|
async-trait = "0.1"
|
|
|
|
url = "2.1"
|
|
|
|
dirs = "3.0"
|
2020-08-28 22:02:41 +00:00
|
|
|
indoc = "1.0"
|
2021-02-03 23:05:11 +00:00
|
|
|
combine = "4.5"
|
2020-10-15 16:52:08 +00:00
|
|
|
sled = "0.34"
|
2021-04-20 21:35:12 +00:00
|
|
|
zerocopy = "0.4"
|
2020-10-15 16:52:08 +00:00
|
|
|
byteorder = "1.3"
|
|
|
|
futures = "0.3"
|
2020-10-30 22:44:19 +00:00
|
|
|
memmem = "0.1"
|
2020-11-03 20:14:15 +00:00
|
|
|
bincode = "1.3"
|
2021-01-31 14:06:25 +00:00
|
|
|
html2text = "0.2"
|
2021-02-09 21:55:24 +00:00
|
|
|
phf = { version = "0.8", features = ["macros"] }
|
2020-11-08 21:43:18 +00:00
|
|
|
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk", branch = "master" }
|
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]
|
2021-01-29 22:35:07 +00:00
|
|
|
version = "1.0"
|
2021-02-04 19:37:22 +00:00
|
|
|
features = [ "full" ]
|