diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dcdb154..9ff7165 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,6 +19,17 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 + - name: Cache + uses: actions/cache@v4 + with: + path: | + ~/.cargo/bin/ + ~/.cargo/registry/index/ + ~/.cargo/registry/cache/ + ~/.cargo/git/db/ + target/ + key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + restore-keys: ${{ runner.os }}-cargo- - name: initial submodule run: git submodule update --init diff --git a/Cargo.toml b/Cargo.toml index a88a759..d2841cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,8 +17,7 @@ authors = [ default = ["bonmin-src/default"] [dependencies] -# bonmin-src = { version = "0.1", default-features = false } -bonmin-src ={ path = "../bonmin-src" } +bonmin-src = { version = "0.1", default-features = false } [build-dependencies] bindgen = "0.69"