chore(deps): use less specific versions in manifests (#2041)

The goal of this is to reduce dependabot updates to generally only
Cargo.lock updates

- Use "0.x" or "x" as the version generally.
- Specify versions only in the workspace manifest
- Bump versions to latest semver compatible (and update rstest / lru /
  criterion deps)
This commit is contained in:
Josh McKinney
2025-08-05 02:25:15 -07:00
committed by GitHub
parent 9998000e36
commit ae4f42f5ae
17 changed files with 110 additions and 141 deletions

View File

@@ -14,9 +14,9 @@ edition.workspace = true
rust-version.workspace = true
[dependencies]
color-eyre = "0.6.5"
color-eyre.workspace = true
crossterm = { workspace = true, features = ["event-stream"] }
octocrab = "0.44.0"
octocrab.workspace = true
ratatui.workspace = true
tokio = { version = "1.47.0", features = ["rt-multi-thread", "macros"] }
tokio-stream = "0.1.17"
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
tokio-stream.workspace = true