Skip to content

Commit ba96da8

Browse files
committed
Merge #303: Update dependencies
dfcc4b3 chore(deps): [#297] update cargo dependencies (Jose Celano) 77a5e23 chore(deps): [#297] update workflow actions (Jose Celano) Pull request description: - GitHub workflow actions - Cargo dependencies Top commit has no ACKs. Tree-SHA512: a2f1a284e0a70616c589a1c53e1974faddd11d18f3015fd302011a7cd1dd8649cf9eea02a7f048e53bb2b1b5cb84bb34c01b07592802bc2a3021843f1e9dd37a
2 parents 04b3549 + dfcc4b3 commit ba96da8

File tree

5 files changed

+67
-15
lines changed

5 files changed

+67
-15
lines changed

.github/workflows/publish_docker_image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
uses: docker/setup-buildx-action@v2
7474

7575
- name: Build and push
76-
uses: docker/build-push-action@v3
76+
uses: docker/build-push-action@v4
7777
with:
7878
context: .
7979
file: ./Dockerfile

.github/workflows/test_build_release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Build Torrust Tracker
6262
run: cargo build --release
6363
- name: Upload Build Artifact
64-
uses: actions/upload-artifact@v2
64+
uses: actions/upload-artifact@v3
6565
with:
6666
name: torrust-tracker
6767
path: ./target/release/torrust-tracker
@@ -71,7 +71,7 @@ jobs:
7171
runs-on: ubuntu-latest
7272
steps:
7373
- name: Download Build Artifact
74-
uses: actions/download-artifact@v2
74+
uses: actions/download-artifact@v3
7575
with:
7676
name: torrust-tracker
7777
- name: Release

Cargo.lock

+61-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ derive_more = "0.99"
3434
thiserror = "1.0"
3535
futures = "0.3"
3636
async-trait = "0.1"
37-
aquatic_udp_protocol = "0.2"
37+
aquatic_udp_protocol = "0.8"
3838
uuid = { version = "1", features = ["v4"] }
3939
axum = "0.6.10"
4040
axum-server = { version = "0.4", features = ["tls-rustls"] }
@@ -43,7 +43,7 @@ bip_bencode = "0.4"
4343
torrust-tracker-primitives = { version = "3.0.0-alpha.1", path = "packages/primitives" }
4444
torrust-tracker-configuration = { version = "3.0.0-alpha.1", path = "packages/configuration" }
4545
torrust-tracker-located-error = { version = "3.0.0-alpha.1", path = "packages/located-error" }
46-
multimap = "0.8"
46+
multimap = "0.9"
4747
hyper = "0.14"
4848

4949
[dev-dependencies]

packages/configuration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition.workspace = true
1010
serde = { version = "1.0", features = ["derive"] }
1111
serde_with = "2.0"
1212
config = "0.13"
13-
toml = "0.5"
13+
toml = "0.7"
1414
log = { version = "0.4", features = ["release_max_level_info"] }
1515
thiserror = "1.0"
1616
torrust-tracker-primitives = { version = "3.0.0-alpha.1", path = "../primitives" }

0 commit comments

Comments
 (0)