Skip to content

Commit

Permalink
Fix dependency reference from c2patool crate to c2pa crate (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
scouten-adobe authored May 26, 2022
1 parent e1c2f1a commit 5fb78b6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,13 @@ jobs:
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info

- name: Upload code coverage results
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
fail_ci_if_error: ${{ matrix.os != 'macos-latest' }}
# Disregard build errors on Mac until
# https://github.com/codecov/codecov-action/issues/745
# is fixed.
verbose: true

tests-msrv:
name: Unit tests
Expand Down Expand Up @@ -204,4 +208,4 @@ jobs:
uses: aig787/cargo-udeps-action@v1
with:
version: latest
args: --all-targets
args: --all-targets --all-features
2 changes: 1 addition & 1 deletion c2patool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ rust-version = "1.58.0"

[dependencies]
anyhow = "1.0"
c2pa = { path = "../sdk", features = ["file_io"] }
c2pa = { version = "0.1", features = ["file_io"] }
dirs = "4.0"
env_logger = "0.9"
log = "0.4"
Expand Down

0 comments on commit 5fb78b6

Please sign in to comment.