c2pa-rs

A fork of https://github.com/contentauth/c2pa-rs/
git clone git://archive.git.mtrnord.blog/mtrnords-photography-manager/c2pa-rs.git
Log | Files | Refs | README

commit e50d6ec037d518692a86edd6fc1d12f5fab4d648
parent 21226418c12dd5c89a81685259937d36d2e0f551
Author: Gavin  Peacock <gpeacock@adobe.com>
Date:   Mon, 20 Mar 2023 11:03:51 -0700

Makefile update (#213)

* removes test-no-defaults and fixes test-wasm-web
* Add test-wasm-web to make test
Diffstat:
MMakefile | 7++-----
1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile @@ -25,18 +25,15 @@ clippy: test-local: cargo test --all-features -test-no-defaults: - cd sdk && cargo test --features="file_io, xmp_write, bmff" --no-default-features - test-wasm: cd sdk && wasm-pack test --node test-wasm-web: - cd sdk && wasm-pack test --chrome --headless -- --features="remote_wasm_sign" + cd sdk && wasm-pack test --chrome --headless -- --features="serialize_thumbnails" # Full local validation, build and test all features including wasm # Run this before pushing a PR to pre-validate -test: check-format check-docs clippy test-local test-no-defaults test-wasm +test: check-format check-docs clippy test-local test-wasm-web # Auto format code according to standards fmt: