-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (25 loc) · 893 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
[package]
name = "wordle-cli"
version = "1.0.1"
edition = "2021"
license-file = "LICENSE"
description = "The popular word guessing game as CLI application! Written in Rust."
homepage = "https://www.tohuwabohu.io/projects/wordle-cli"
documentation = "https://www.tohuwabohu.io/projects/wordle-cli"
repository = "https://github.com/tohuwabohu-io/wordle-cli"
readme = "README.md"
default-run = "wordle"
keywords = ["wordle", "game", "cli", "cli-game"]
exclude = [".gitignore", ".github/", ".idea/", "migrations/", "res/db/create.sql", "res/db/drop.sql", "*.iml"]
[[bin]]
name = "wordle"
path = "src/main.rs"
[dependencies]
any_ascii = "0.3.1"
uuid = { version = "1.1.1", features = ["v4", "fast-rng"] }
clap = { version = "3.1.18", features = ["derive"] }
dotenv = "0.15.0"
chrono = "0.4.0"
diesel = { version = "1.4.8", features = ["sqlite", "chrono"] }
console = "0.15"
indicatif = "0.16.2"