Skip to content

Commit

Permalink
first version
Browse files Browse the repository at this point in the history
  • Loading branch information
Maroon502 committed Jan 27, 2024
1 parent d15ee96 commit c4da1e0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit c4da1e0

Please sign in to comment.