Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit c773e89

Browse files
Updated Dependencies (#9)
* Update Rust crate libunftp to 0.18.6 * Update Rust crate serde to 1.0.145 * Update Rust crate thiserror to 1.0.37 * Update Rust crate tokio to 1.21.2 * Update Rust crate tokio-util to 0.7.4 * Update actions/checkout action to v3 * Update docker/login-action action to v2 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 4d40101 commit c773e89

File tree

9 files changed

+19
-33
lines changed

9 files changed

+19
-33
lines changed

.github/workflows/featureRelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
Build_Docker_Image_on_Push:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
- name: Setup Rust
1515
uses: actions-rs/toolchain@v1
1616
with:
@@ -22,7 +22,7 @@ jobs:
2222
cargo clippy --all-features
2323
cargo test --all
2424
- name: Login to DockerHub
25-
uses: docker/login-action@v1
25+
uses: docker/login-action@v2
2626
with:
2727
username: ${{ secrets.DOCKER_USER }}
2828
password: ${{ secrets.DOCKER_PW }}

.github/workflows/featureTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
test:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: Setup Rust
1616
uses: actions-rs/toolchain@v1
1717
with:

.github/workflows/latestRelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
Build_Docker_Image_on_Push:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
- name: Setup Rust
1515
uses: actions-rs/toolchain@v1
1616
with:
@@ -22,7 +22,7 @@ jobs:
2222
cargo clippy --all-features -- -D warnings
2323
cargo test --all
2424
- name: Login to DockerHub
25-
uses: docker/login-action@v1
25+
uses: docker/login-action@v2
2626
with:
2727
username: ${{ secrets.DOCKER_USER }}
2828
password: ${{ secrets.DOCKER_PW }}

.github/workflows/masterTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
- name: Setup Rust
1515
uses: actions-rs/toolchain@v1
1616
with:

.github/workflows/stableRelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
Build_Docker_Image_on_new_Tag:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- name: Setup Rust
1313
uses: actions-rs/toolchain@v1
1414
with:
@@ -23,7 +23,7 @@ jobs:
2323
id: vars
2424
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
2525
- name: Login to DockerHub
26-
uses: docker/login-action@v1
26+
uses: docker/login-action@v2
2727
with:
2828
username: ${{ secrets.DOCKER_USER }}
2929
password: ${{ secrets.DOCKER_PW }}

Cargo.lock

Lines changed: 5 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ members = [".", "server", "api"]
1111
# cli parsing
1212
clap = { version = "4.0.8", features = ["derive", "env"] }
1313
# ftp lib
14-
libunftp = "0.18.5"
14+
libunftp = "0.18.6"
1515
# own implementations
1616
unftp-filefighter = { path = "server" }
1717
filefighter-api = { path = "api" }

api/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ authors = ["open-schnick <[email protected]>", "qvalentin <valentin.theodor@we
66

77
[dependencies]
88
reqwest = { version = "0.11.12", features = ["json", "cookies","multipart","stream"] }
9-
serde = { version = "1.0.144", features = ["derive"] }
9+
serde = { version = "1.0.145", features = ["derive"] }
1010
serde_json = "1.0.85"
1111
sha256 = "1.0.3"
12-
thiserror = "1.0.35"
12+
thiserror = "1.0.37"
1313
tracing = "0.1.36"
14-
tokio = "1.21.1"
14+
tokio = "1.21.2"
1515
tokio-stream = "0.1.10"
1616
futures = "0.3"
17-
tokio-util = { version = "0.6.9", features = ["compat","io"] }
17+
tokio-util = { version = "0.7.4", features = ["compat","io"] }
1818
new_mime_guess = "4.0.1"

server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["open-schnick <[email protected]>", "qvalentin <valentin.theodor@we
66

77
[dependencies]
88
async-trait = "0.1.57"
9-
libunftp = "0.18.5"
9+
libunftp = "0.18.6"
1010
tokio = "1.21.1"
1111
tracing = "0.1.36"
1212
url = "2.3.1"

0 commit comments

Comments
 (0)