-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/cargo/sdk/base64-0.22.1
- Loading branch information
Showing
75 changed files
with
1,268 additions
and
387 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "export_schema" | ||
version = "0.33.3" | ||
version = "0.34.0" | ||
authors = ["Dave Kozma <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "make_test_images" | ||
version = "0.33.3" | ||
version = "0.34.0" | ||
authors = ["Gavin Peacock <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "c2pa" | ||
version = "0.33.3" | ||
version = "0.34.0" | ||
description = "Rust SDK for C2PA (Coalition for Content Provenance and Authenticity) implementors" | ||
authors = [ | ||
"Maurice Fisher <[email protected]>", | ||
|
@@ -65,7 +65,7 @@ crate-type = ["lib"] | |
|
||
[dependencies] | ||
asn1-rs = "0.5.2" | ||
async-generic = "0.1.2" | ||
async-generic = "1.1" | ||
async-recursion = "1.1.1" | ||
async-trait = { version = "0.1.77" } | ||
atree = "0.5.2" | ||
|
@@ -89,6 +89,7 @@ config = { version = "0.14.0", default-features = false, features = [ | |
conv = "0.3.3" | ||
coset = "0.3.1" | ||
extfmt = "0.1.1" | ||
ed25519-dalek = "2.1.1" | ||
fast-xml = "0.23.1" | ||
hex = "0.4.3" | ||
# Version 1.13.0 doesn't compile under Rust < 1.75, pinning to 1.12.0 | ||
|
@@ -123,7 +124,7 @@ sha2 = "0.10.6" | |
tempfile = "3.10.1" | ||
thiserror = "1.0.61" | ||
treeline = "0.1.0" | ||
url = "2.2.2, <2.5.1" # Can't use 2.5.1 or newer until new license is reviewed. | ||
url = "2.5.2" | ||
uuid = { version = "1.7.0", features = ["serde", "v4", "js"] } | ||
x509-parser = "0.15.1" | ||
x509-certificate = "0.21.0" | ||
|
@@ -141,7 +142,6 @@ openssl = { version = "0.10.61", features = ["vendored"], optional = true } | |
|
||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
console_log = { version = "1.0.0", features = ["color"] } | ||
ed25519-dalek = "2.1.1" | ||
getrandom = { version = "0.2.7", features = ["js"] } | ||
# We need to use the `inaccurate` flag here to ensure usage of the JavaScript Date API | ||
# to handle certificate timestamp checking correctly. | ||
|
@@ -167,6 +167,7 @@ mockall = "0.11.2" | |
c2pa = { path = ".", features = [ | ||
"unstable_api", | ||
] } # allow integration tests to use the new API | ||
glob = "0.3.1" | ||
jumbf = "0.4.0" | ||
|
||
|
||
|
@@ -175,5 +176,4 @@ wasm-bindgen-test = "0.3.31" | |
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] | ||
actix = "0.13.1" | ||
ed25519-dalek = "2.1.1" | ||
tokio = { version = "1.36.0", features = ["full"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.