diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cd78a7ba..de11e2aa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,8 +30,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 - # with: - # ref: "stable" + with: + ref: "stable" - name: Install GNU toolchain (Windows) if: matrix.target == 'x86_64-pc-windows-gnu' @@ -83,8 +83,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 - # with: - # ref: "stable" + with: + ref: "stable" - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 diff --git a/Cargo.toml b/Cargo.toml index 203ae372..e29ade9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.0.1" +version = "0.1.0" rust-version = "1.76" edition = "2021" @@ -80,4 +80,9 @@ dotenvy = "0.15.7" indexmap = "2.2.6" lazy_static = "1.5.0" bimap = { version = "0.6.3", features = ["serde"] } -derive_more = { version = "1.0.0", features = ["from", "into", "deref", "display"] } +derive_more = { version = "1.0.0", features = [ + "from", + "into", + "deref", + "display", +] }