diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 85345fa..9ac5e8d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,6 +24,8 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 + with: + platforms: linux/amd64,linux/arm64 - name: Cache Docker layers uses: actions/cache@v4 @@ -37,6 +39,7 @@ jobs: with: context: . push: true + platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} cache-from: type=local,src=/tmp/.buildx-cache diff --git a/Cargo.toml b/Cargo.toml index 27e3246..050fe74 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,10 +8,10 @@ edition = "2021" [dependencies] serde_json = "1.0" serde = "1.0" -toml = "0.5" -gcp_auth = "0.5.0" -reqwest = { version = "0.11", features = ["json"] } -base64 = "0.13" +toml = "0.8.19" +gcp_auth = "0.12.3" +reqwest = { version = "0.12.9", features = ["json"] } +base64 = "0.22.1" async-trait = "0.1.57" redis = "0.29.2" regex = "1" @@ -31,7 +31,7 @@ bytes = "1.10.1" voicevox-client = { git = "https://github.com/mii443/rust" } [dependencies.uuid] -version = "0.8" +version = "1.11.0" features = ["serde", "v4"] [dependencies.songbird] @@ -58,7 +58,6 @@ features = [ "voice", ] - [dependencies.tokio] version = "1.0" features = ["macros", "rt-multi-thread"]