Skip to content

Commit

Permalink
Update Cargo.toml file
Browse files Browse the repository at this point in the history
  • Loading branch information
theoforger committed Nov 21, 2024
1 parent da03ecd commit 7533789
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,21 @@ name = "mastermind"
version = "0.1.0"
edition = "2021"
authors = ["theoforger <[email protected]>"]
license-file = "LICENSE"
description = "An LLM-powered CLI tool to help you be a better spymaster in Codenames"
repository = "https://github.com/theoforger/mastermind"
readme = "README.md"
keywords = ["codenames", "llm"]
categories = ["command-line-utilities"]

[dependencies]
clap = { version = "4.5.17", features = ["derive"] }
reqwest = { version = "0.12.7", features = ["json"] }
tokio = { version = "1.40.0", features = ["rt", "rt-multi-thread", "macros"] }
clap = { version = "4.5.21", features = ["derive"] }
reqwest = { version = "0.12.9", features = ["json"] }
tokio = { version = "1.41.1", features = ["rt", "rt-multi-thread", "macros"] }
dotenv = "0.15.0"
serde_json = "1.0.128"
serde = { version = "1.0.210", features = ["derive"] }
comfy-table = "7.1.1"
serde_json = "1.0.133"
serde = { version = "1.0.215", features = ["derive"] }
comfy-table = "7.1.3"
httpmock = "0.7.0"
dialoguer = "0.11.0"
toml_edit = "0.22.22"
Expand Down

0 comments on commit 7533789

Please sign in to comment.