Skip to content

Commit

Permalink
⬆️ Update dependencies
Browse files Browse the repository at this point in the history
Update multiple dependencies to their latest versions

Update the following dependencies:
- clap: 4.5.11 -> 4.5.16
- tokio: 1.39.2 -> 1.39.3
- reqwest: 0.12.5 -> 0.12.7
- serde: 1.0.204 -> 1.0.209
- serde_json: 1.0.121 -> 1.0.127
- toml: 0.8.16 -> 0.8.19
- regex: 1.10.5 -> 1.10.6
- tempfile: 3.10.1 -> 3.12.0

This update ensures the project uses the latest versions of
these dependencies, potentially including bug fixes and
performance improvements.
  • Loading branch information
hyperb1iss committed Aug 25, 2024
1 parent 2de3747 commit aa80ae0
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 67 deletions.
145 changes: 86 additions & 59 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ categories = ["command-line-utilities", "development-tools"]


[dependencies]
clap = { version = "4.5.11", features = ["derive", "cargo"] }
tokio = { version = "1.39.2", features = ["full"] }
reqwest = { version = "0.12.5", features = ["json"] }
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.121"
clap = { version = "4.5.16", features = ["derive", "cargo"] }
tokio = { version = "1.39.3", features = ["full"] }
reqwest = { version = "0.12.7", features = ["json"] }
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
anyhow = "1.0.86"
toml = "0.8.16"
toml = "0.8.19"
dirs = "5.0.1"
regex = "1.10.5"
regex = "1.10.6"
colored = "2.1.0"
dialoguer = "0.11.0"
console = "0.15.8"
tempfile = "3.10.1"
tempfile = "3.12.0"
git2 = "0.19.0"
indicatif = "0.17.8"
async-trait = "0.1.81"
Expand Down

0 comments on commit aa80ae0

Please sign in to comment.