tenebrous-dicebot/Cargo.toml

43 lines
940 B
TOML
Raw Normal View History

2020-04-17 05:20:54 +00:00
[package]
2020-08-23 21:19:38 +00:00
name = "chronicle-dicebot"
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"
env_logger = "0.7"
2020-04-20 06:32:57 +00:00
toml = "0.5"
nom = "5"
2020-04-20 16:02:26 +00:00
rand = "0.7"
thiserror = "1.0"
itertools = "0.9"
async-trait = "0.1"
url = "2.1"
dirs = "3.0"
indoc = "1.0"
2021-02-03 23:05:11 +00:00
combine = "4.5"
sled = "0.34"
zerocopy = "0.3"
byteorder = "1.3"
futures = "0.3"
memmem = "0.1"
bincode = "1.3"
html2text = "0.2"
phf = { version = "0.7", features = ["macros"] }
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]
version = "1.0"
features = [ "full" ]