[package]
edition = "2021"
name = "hanabot"
version = "0.2.7"
authors = ["Jon Gjengset <jon@thesquareplanet.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Slack bot that lets you play Hanabi"
readme = "README.md"
keywords = [
"bot",
"slack",
"hanabi",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jonhoo/hanabot.git"
[lib]
name = "hanabot"
path = "src/lib.rs"
[[bin]]
name = "hanabot"
path = "src/main.rs"
[[bin]]
name = "stdio"
path = "src/bin/stdio.rs"
[[test]]
name = "games"
path = "tests/games.rs"
[dependencies.eyre]
version = "0.6.12"
[dependencies.http]
version = "1.4.1"
[dependencies.rand]
version = "0.10.1"
[dependencies.serde]
version = "1.0"
[dependencies.serde_derive]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.slack-morphism]
version = "2.22.0"
features = ["hyper"]
[dependencies.tokio]
version = "1.52.3"
features = ["full"]