tenebrous-dicebot/Cargo.toml

40 lines
1.2 KiB
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.5.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"
# The versioning of the matrix SDK follows its Cargo.toml. The SDK and
# macros are on master, but it imports the common and base from 0.1.0.
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk", rev = "master" }
matrix-sdk-common-macros = { git = "https://github.com/matrix-org/matrix-rust-sdk", rev = "master" }
matrix-sdk-common = { git = "https://github.com/matrix-org/matrix-rust-sdk", rev = "0.1.0" }
matrix-sdk-base = { git = "https://github.com/matrix-org/matrix-rust-sdk", rev = "0.1.0", default_features = false }
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"]