mirror of
https://github.com/anthonyoteri/dredge.git
synced 2026-06-05 23:36:53 -04:00
chore: update all dependencies to latest versions
- Replace deprecated serde_yaml with serde_yml - Remove unused dependencies: serde_toml, xdg - Bump thiserror 1→2, toml 0.8→1.0, reqwest 0.12.3→0.12 (latest), clap 4.4→4.6, tokio 1.32→1.52, and all other deps to latest - Raise rust-version minimum from 1.72 to 1.80 - Fix description typo: 'interracting' → 'interacting' - Bump version to 1.2.0 - Update release workflow action versions
This commit is contained in:
@@ -16,7 +16,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Create release
|
- name: Create release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1.21.0
|
||||||
|
|
||||||
build-docs:
|
build-docs:
|
||||||
name: Build documentation
|
name: Build documentation
|
||||||
@@ -53,7 +53,7 @@ jobs:
|
|||||||
dredge
|
dredge
|
||||||
|
|
||||||
- name: Upload documentation assets
|
- name: Upload documentation assets
|
||||||
uses: shogo82148/actions-upload-release-asset@v1
|
uses: shogo82148/actions-upload-release-asset@v1.10.1
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
@@ -105,7 +105,7 @@ jobs:
|
|||||||
dredge${{ matrix.config.ext }}
|
dredge${{ matrix.config.ext }}
|
||||||
|
|
||||||
- name: Upload release assets
|
- name: Upload release assets
|
||||||
uses: shogo82148/actions-upload-release-asset@v1
|
uses: shogo82148/actions-upload-release-asset@v1.10.1
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
|
|||||||
+17
-19
@@ -1,12 +1,12 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "dredge-tool"
|
name = "dredge-tool"
|
||||||
version = "1.1.0"
|
version = "1.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Anthony Oteri"]
|
authors = ["Anthony Oteri"]
|
||||||
description = "A Command Line tool for interracting with the Docker Registry API"
|
description = "A command line tool for interacting with the Docker Registry API"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/anthonyoteri/dredge"
|
repository = "https://github.com/anthonyoteri/dredge"
|
||||||
rust-version = "1.72"
|
rust-version = "1.80"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
keywords = [
|
keywords = [
|
||||||
"docker",
|
"docker",
|
||||||
@@ -26,21 +26,19 @@ name = "dredge"
|
|||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { version = "4.4.3", features = ["derive", "env", "wrap_help"] }
|
clap = { version = "4.6", features = ["derive", "env", "wrap_help"] }
|
||||||
simple_logger = { version = "5.0.0", features = ["timestamps", "colors", "stderr"] }
|
simple_logger = { version = "5.2", features = ["timestamps", "colors", "stderr"] }
|
||||||
http = "1.0.0"
|
http = "1.4"
|
||||||
indoc = "2.0.4"
|
indoc = "2.0"
|
||||||
log = "0.4.20"
|
log = "0.4"
|
||||||
reqwest = { version = "0.12.3", features = ["json", "gzip", "multipart", "native-tls-vendored"] }
|
reqwest = { version = "0.12", features = ["json", "gzip", "multipart", "native-tls-vendored"] }
|
||||||
serde = { version = "1.0.188", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_toml = "0.0.1"
|
serde_yml = "0.0.12"
|
||||||
serde_yaml = "0.9.25"
|
thiserror = "2.0"
|
||||||
thiserror = "1.0.48"
|
toml = "1.0"
|
||||||
toml = "0.8.0"
|
url = { version = "2.5", features = ["serde"] }
|
||||||
url = { version = "2.4.1", features = ["serde"] }
|
tokio = { version = "1.52", features = ["macros"] }
|
||||||
xdg = "2.5.2"
|
|
||||||
tokio = { version = "1.32.0", features = ["macros"] }
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
mockito = "1.2.0"
|
mockito = "1.7"
|
||||||
env_logger = "0.11.3"
|
env_logger = "0.11"
|
||||||
|
|||||||
Reference in New Issue
Block a user