commit 5fb78b678bcb601c3326770ff2eb148607d95edc
parent e1c2f1aed06c0bf9975da0b6b2fe0c262f4c5b22
Author: Eric Scouten <scouten@adobe.com>
Date: Thu, 26 May 2022 16:11:26 -0700
Fix dependency reference from c2patool crate to c2pa crate (#21)
Diffstat:
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
@@ -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
@@ -204,4 +208,4 @@ jobs:
uses: aig787/cargo-udeps-action@v1
with:
version: latest
- args: --all-targets
+ args: --all-targets --all-features
diff --git a/c2patool/Cargo.toml b/c2patool/Cargo.toml
@@ -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"