-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
31 lines (27 loc) · 949 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "poodle"
version = "0.6.3"
edition = "2021"
authors = ["John Law <[email protected]>"]
description = "Not a poodle, but a word-guessing game from your terminal"
include = ["src/**/*", "LICENSE", "README.md"]
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/poyea/poodle/"
homepage = "https://github.com/poyea/poodle/"
documentation = "https://github.com/poyea/poodle/README.md"
keywords = ["wordle", "wordle-rust", "poodle"]
categories = ["games", "command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4"
clap = { version = "3.0", features = ["derive"] }
colored = "2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
[[bench]]
name = "poodle_benchmark"
path = "benches/poodle_benchmark.rs"
harness = false