diff --git a/Makefile b/Makefile index b599c666b..f47f97472 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ test-wasi: ifeq ($(PLATFORM),mac) $(eval CC := /opt/homebrew/opt/llvm/bin/clang) endif - CC=$(CC) CARGO_TARGET_WASM32_WASIP2_RUNNER="wasmtime -S cli -S http --dir ." cargo +nightly test --target wasm32-wasip2 -p c2pa -p c2patool --all-features + CC=$(CC) CARGO_TARGET_WASM32_WASIP2_RUNNER="wasmtime -S cli -S http --dir ." cargo +nightly test --target wasm32-wasip2 -p c2pa --no-default-features --features="rust_native_crypto, file_io, fetch_remote_manifests, add_thumbnails, v1_api" rm -r sdk/Users # Full local validation, build and test all features including wasm diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 73574f687..adafd115a 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -22,7 +22,7 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(test)'] } [dependencies] anyhow = "1.0" atree = "0.5.2" -c2pa = { workspace = true , features = [ +c2pa = { path = "../sdk", version = "0.54.0", features = [ "fetch_remote_manifests", "file_io", "add_thumbnails", @@ -56,5 +56,3 @@ mockall = "0.13.0" assert_cmd = "2.0.14" httpmock = "0.7.0" predicates = "3.1" - -