Skip to content

Commit

Permalink
Merge #303: Update dependencies
Browse files Browse the repository at this point in the history
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
  • Loading branch information
josecelano committed Apr 13, 2023
2 parents 04b3549 + dfcc4b3 commit ba96da8
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
uses: docker/setup-buildx-action@v2

- name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Build Torrust Tracker
run: cargo build --release
- name: Upload Build Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: torrust-tracker
path: ./target/release/torrust-tracker
Expand All @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download Build Artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: torrust-tracker
- name: Release
Expand Down
70 changes: 61 additions & 9 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ derive_more = "0.99"
thiserror = "1.0"
futures = "0.3"
async-trait = "0.1"
aquatic_udp_protocol = "0.2"
aquatic_udp_protocol = "0.8"
uuid = { version = "1", features = ["v4"] }
axum = "0.6.10"
axum-server = { version = "0.4", features = ["tls-rustls"] }
Expand All @@ -43,7 +43,7 @@ bip_bencode = "0.4"
torrust-tracker-primitives = { version = "3.0.0-alpha.1", path = "packages/primitives" }
torrust-tracker-configuration = { version = "3.0.0-alpha.1", path = "packages/configuration" }
torrust-tracker-located-error = { version = "3.0.0-alpha.1", path = "packages/located-error" }
multimap = "0.8"
multimap = "0.9"
hyper = "0.14"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion packages/configuration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition.workspace = true
serde = { version = "1.0", features = ["derive"] }
serde_with = "2.0"
config = "0.13"
toml = "0.5"
toml = "0.7"
log = { version = "0.4", features = ["release_max_level_info"] }
thiserror = "1.0"
torrust-tracker-primitives = { version = "3.0.0-alpha.1", path = "../primitives" }
Expand Down

0 comments on commit ba96da8

Please sign in to comment.