Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ target/
.cursor/rules/security-global/*
.cursor/rules/security-lang/*
output/*
testfiles/c2pa-cert-schemas/test-certs/
6 changes: 5 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ exclude = ["vendor/c2pa-rs"]
[workspace.package]
edition = "2021"
license = "Apache-2.0"
version = "0.2.0"
version = "0.4.0"

[workspace.dependencies]
anyhow = "1.0.100"
Expand All @@ -20,3 +20,7 @@ thiserror = "2.0.17"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "fmt"] }
jsonschema = { version = "0.24", features = ["draft202012"] }
x509-parser = "0.18"
der-parser = "10.0"
pem = "3"
hex = "0.4"
292 changes: 241 additions & 51 deletions README.md

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion crates/c2pa-validate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,10 @@ tracing-subscriber.workspace = true
c2pa = { path = "../../vendor/c2pa-rs/sdk", features = ["file_io", "pdf", "fetch_remote_manifests"] }
profile_evaluator_rs = { path = "../../vendor/profile-evaluator-rs" }

x509-parser.workspace = true
der-parser.workspace = true
pem.workspace = true
hex.workspace = true
jsonschema.workspace = true

[dev-dependencies]
jsonschema = { workspace = true }
Loading