tenebrous-dicebot/Cargo.toml

48 lines
1.2 KiB
TOML
Raw Normal View History

2020-04-17 05:20:54 +00:00
[package]
name = "tenebrous-dicebot"
2021-05-14 22:27:57 +00:00
version = "0.10.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"
license = 'AGPL-3.0-or-later'
description = 'An async Matrix dice bot for role-playing games'
2020-04-22 04:34:50 +00:00
readme = 'README.md'
repository = 'https://git.agnos.is/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"
tracing-subscriber = "0.2"
2020-04-20 06:32:57 +00:00
toml = "0.5"
nom = "5"
rand = "0.8"
2021-05-22 14:52:32 +00:00
rust-argon2 = "0.8"
thiserror = "1.0"
itertools = "0.10"
async-trait = "0.1"
url = "2.1"
dirs = "3.0"
indoc = "1.0"
2021-02-03 23:05:11 +00:00
combine = "4.5"
futures = "0.3"
html2text = "0.2"
phf = { version = "0.8", features = ["macros"] }
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk", branch = "master" }
refinery = { version = "0.5", features = ["rusqlite"]}
barrel = { version = "0.6", features = ["sqlite3"] }
tempfile = "3"
substring = "1.4"
fuse-rust = "0.2"
[dependencies.sqlx]
version = "0.5"
features = [ "offline", "sqlite", "runtime-tokio-native-tls" ]
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-05-14 22:53:10 +00:00
version = "1"
features = [ "full" ]