[package]
edition = "2021"
name = "poodle"
version = "0.6.4"
authors = ["John Law <poyea@pm.me>"]
build = false
include = [
"src/**/*",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Not a poodle, but a word-guessing game from your terminal"
homepage = "https://github.com/poyea/poodle/"
documentation = "https://github.com/poyea/poodle/README.md"
readme = "README.md"
keywords = [
"wordle",
"wordle-rust",
"poodle",
]
categories = [
"games",
"command-line-utilities",
]
license-file = "LICENSE"
repository = "https://github.com/poyea/poodle/"
[lib]
name = "poodle"
path = "src/lib.rs"
[[bin]]
name = "poodle"
path = "src/main.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "3.0"
features = ["derive"]
[dependencies.colored]
version = "2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.criterion]
version = "0.3"
features = ["html_reports"]