diff --git a/bindings/wasm/Cargo.toml b/bindings/wasm/Cargo.toml index c4fb497604..c1e6b8453b 100644 --- a/bindings/wasm/Cargo.toml +++ b/bindings/wasm/Cargo.toml @@ -31,7 +31,7 @@ wasm-bindgen = { version = "0.2.85", features = ["serde-serialize"] } wasm-bindgen-futures = { version = "0.4", default-features = false } [dependencies.identity_iota] -version = "0.7.0-alpha.7" +version = "0.7.0-alpha.8" path = "../../identity_iota" default-features = false features = ["client", "revocation-bitmap", "resolver", "domain-linkage"] diff --git a/examples/Cargo.toml b/examples/Cargo.toml index c07b2acf89..81f8cda5d8 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "examples" -version = "0.7.0-alpha.7" +version = "0.7.0-alpha.8" authors = ["IOTA Stiftung"] edition = "2021" publish = false diff --git a/identity_core/Cargo.toml b/identity_core/Cargo.toml index 20203c2a18..9d068fb05d 100644 --- a/identity_core/Cargo.toml +++ b/identity_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_core" -version = "0.7.0-alpha.7" +version = "0.7.0-alpha.8" authors.workspace = true edition.workspace = true homepage.workspace = true diff --git a/identity_credential/Cargo.toml b/identity_credential/Cargo.toml index 961325db97..1f3c8e0682 100644 --- a/identity_credential/Cargo.toml +++ b/identity_credential/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_credential" -version = "0.7.0-alpha.7" +version = "0.7.0-alpha.8" authors = ["IOTA Stiftung"] edition = "2021" homepage.workspace = true @@ -15,10 +15,10 @@ description = "An implementation of the Verifiable Credentials standard." dataurl = { version = "0.1.2", default-features = false, optional = true } flate2 = { version = "1.0.23", default-features = false, features = ["rust_backend"], optional = true } futures = { version = "0.3", default-features = false, optional = true } -identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core", default-features = false } -identity_did = { version = "=0.7.0-alpha.7", path = "../identity_did", default-features = false } -identity_document = { version = "=0.7.0-alpha.7", path = "../identity_document", default-features = false } -identity_verification = { version = "=0.7.0-alpha.7", path = "../identity_verification", default-features = false } +identity_core = { version = "=0.7.0-alpha.8", path = "../identity_core", default-features = false } +identity_did = { version = "=0.7.0-alpha.8", path = "../identity_did", default-features = false } +identity_document = { version = "=0.7.0-alpha.8", path = "../identity_document", default-features = false } +identity_verification = { version = "=0.7.0-alpha.8", path = "../identity_verification", default-features = false } indexmap = { version = "2.0", default-features = false, features = ["std", "serde"] } itertools = { version = "0.11", default-features = false, features = ["use_std"], optional = true } once_cell = { version = "1.18", default-features = false, features = ["std"] } @@ -31,7 +31,7 @@ thiserror.workspace = true url = { version = "2.4", default-features = false } [dev-dependencies] -identity_eddsa_verifier = { version = "=0.7.0-alpha.7", path = "../identity_eddsa_verifier", default-features = false, features = ["ed25519"] } +identity_eddsa_verifier = { version = "=0.7.0-alpha.8", path = "../identity_eddsa_verifier", default-features = false, features = ["ed25519"] } iota-crypto = { version = "0.23", default-features = false, features = ["ed25519", "std", "random"] } proptest = { version = "1.0.0", default-features = false, features = ["std"] } serde_json.workspace = true diff --git a/identity_did/Cargo.toml b/identity_did/Cargo.toml index c3331899de..64908acb7a 100644 --- a/identity_did/Cargo.toml +++ b/identity_did/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_did" -version = "0.7.0-alpha.7" +version = "0.7.0-alpha.8" authors.workspace = true edition = "2021" homepage.workspace = true @@ -13,7 +13,7 @@ description = "Agnostic implementation of the Decentralized Identifiers (DID) st [dependencies] did_url = { version = "0.1", default-features = false, features = ["std", "serde"] } form_urlencoded = { version = "1.2.0", default-features = false, features = ["alloc"] } -identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core" } +identity_core = { version = "=0.7.0-alpha.8", path = "../identity_core" } serde.workspace = true strum.workspace = true thiserror.workspace = true diff --git a/identity_document/Cargo.toml b/identity_document/Cargo.toml index 94cc72e40f..75d5e27754 100644 --- a/identity_document/Cargo.toml +++ b/identity_document/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_document" -version = "0.7.0-alpha.7" +version = "0.7.0-alpha.8" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -13,9 +13,9 @@ description = "Method-agnostic implementation of the Decentralized Identifiers ( [dependencies] did_url = { version = "0.1", default-features = false, features = ["std", "serde"] } -identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core" } -identity_did = { version = "=0.7.0-alpha.7", path = "../identity_did" } -identity_verification = { version = "=0.7.0-alpha.7", path = "../identity_verification", default-features = false } +identity_core = { version = "=0.7.0-alpha.8", path = "../identity_core" } +identity_did = { version = "=0.7.0-alpha.8", path = "../identity_did" } +identity_verification = { version = "=0.7.0-alpha.8", path = "../identity_verification", default-features = false } indexmap = { version = "2.0", default-features = false, features = ["std", "serde"] } serde.workspace = true strum.workspace = true diff --git a/identity_eddsa_verifier/Cargo.toml b/identity_eddsa_verifier/Cargo.toml index 9a69b0fe8f..b6e6ba624d 100644 --- a/identity_eddsa_verifier/Cargo.toml +++ b/identity_eddsa_verifier/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_eddsa_verifier" -version = "0.7.0-alpha.7" +version = "0.7.0-alpha.8" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -12,7 +12,7 @@ rust-version.workspace = true description = "JWS EdDSA signature verification for IOTA Identity" [dependencies] -identity_jose = { version = "=0.7.0-alpha.7", path = "../identity_jose", default-features = false } +identity_jose = { version = "=0.7.0-alpha.8", path = "../identity_jose", default-features = false } iota-crypto = { version = "0.23", default-features = false, features = ["std"] } [features] diff --git a/identity_iota/Cargo.toml b/identity_iota/Cargo.toml index 61bf70ba87..f9e1084e8e 100644 --- a/identity_iota/Cargo.toml +++ b/identity_iota/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_iota" -version = "0.7.0-alpha.7" +version = "0.7.0-alpha.8" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -12,14 +12,14 @@ rust-version.workspace = true description = "Framework for Self-Sovereign Identity with IOTA DID." [dependencies] -identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core", default-features = false } -identity_credential = { version = "=0.7.0-alpha.7", path = "../identity_credential", features = ["validator"], default-features = false } -identity_did = { version = "=0.7.0-alpha.7", path = "../identity_did", default-features = false } -identity_document = { version = "=0.7.0-alpha.7", path = "../identity_document", default-features = false } -identity_iota_core = { version = "=0.7.0-alpha.7", path = "../identity_iota_core", default-features = false } -identity_resolver = { version = "=0.7.0-alpha.7", path = "../identity_resolver", default-features = false, optional = true } -identity_storage = { version = "=0.7.0-alpha.7", path = "../identity_storage", default-features = false, features = ["iota-document"] } -identity_verification = { version = "=0.7.0-alpha.7", path = "../identity_verification", default-features = false } +identity_core = { version = "=0.7.0-alpha.8", path = "../identity_core", default-features = false } +identity_credential = { version = "=0.7.0-alpha.8", path = "../identity_credential", features = ["validator"], default-features = false } +identity_did = { version = "=0.7.0-alpha.8", path = "../identity_did", default-features = false } +identity_document = { version = "=0.7.0-alpha.8", path = "../identity_document", default-features = false } +identity_iota_core = { version = "=0.7.0-alpha.8", path = "../identity_iota_core", default-features = false } +identity_resolver = { version = "=0.7.0-alpha.8", path = "../identity_resolver", default-features = false, optional = true } +identity_storage = { version = "=0.7.0-alpha.8", path = "../identity_storage", default-features = false, features = ["iota-document"] } +identity_verification = { version = "=0.7.0-alpha.8", path = "../identity_verification", default-features = false } [dev-dependencies] anyhow = "1.0.64" diff --git a/identity_iota_core/Cargo.toml b/identity_iota_core/Cargo.toml index 1e8d04528f..aa13543004 100644 --- a/identity_iota_core/Cargo.toml +++ b/identity_iota_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_iota_core" -version = "0.7.0-alpha.7" +version = "0.7.0-alpha.8" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -14,11 +14,11 @@ description = "An IOTA Ledger integration for the IOTA DID Method." [dependencies] async-trait = { version = "0.1.56", default-features = false, optional = true } futures = { version = "0.3", default-features = false } -identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core", default-features = false } -identity_credential = { version = "=0.7.0-alpha.7", path = "../identity_credential", default-features = false, features = ["validator"] } -identity_did = { version = "=0.7.0-alpha.7", path = "../identity_did", default-features = false } -identity_document = { version = "=0.7.0-alpha.7", path = "../identity_document", default-features = false } -identity_verification = { version = "=0.7.0-alpha.7", path = "../identity_verification", default-features = false } +identity_core = { version = "=0.7.0-alpha.8", path = "../identity_core", default-features = false } +identity_credential = { version = "=0.7.0-alpha.8", path = "../identity_credential", default-features = false, features = ["validator"] } +identity_did = { version = "=0.7.0-alpha.8", path = "../identity_did", default-features = false } +identity_document = { version = "=0.7.0-alpha.8", path = "../identity_document", default-features = false } +identity_verification = { version = "=0.7.0-alpha.8", path = "../identity_verification", default-features = false } iota-sdk = { version = "1.0.2", default-features = false, features = ["serde", "std"], optional = true } num-derive = { version = "0.4", default-features = false } num-traits = { version = "0.2", default-features = false, features = ["std"] } diff --git a/identity_jose/Cargo.toml b/identity_jose/Cargo.toml index 79eb781324..1f5c83fb74 100644 --- a/identity_jose/Cargo.toml +++ b/identity_jose/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_jose" -version = "0.7.0-alpha.7" +version = "0.7.0-alpha.8" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -12,7 +12,7 @@ rust-version.workspace = true description = "A library for JOSE (JSON Object Signing and Encryption)" [dependencies] -identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core", default-features = false } +identity_core = { version = "=0.7.0-alpha.8", path = "../identity_core", default-features = false } iota-crypto = { version = "0.23", default-features = false, features = ["std", "sha"] } serde.workspace = true serde_json = { version = "1.0", default-features = false, features = ["std"] } diff --git a/identity_resolver/Cargo.toml b/identity_resolver/Cargo.toml index 640c897ea3..d9000a6e09 100644 --- a/identity_resolver/Cargo.toml +++ b/identity_resolver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_resolver" -version = "0.7.0-alpha.7" +version = "0.7.0-alpha.8" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -15,16 +15,16 @@ description = "DID Resolution utilities for the identity.rs library." # This is currently necessary for the ResolutionHandler trait. This can be made an optional dependency if alternative ways of attaching handlers are introduced. async-trait = { version = "0.1", default-features = false } futures = { version = "0.3" } -identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core", default-features = false } -identity_credential = { version = "=0.7.0-alpha.7", path = "../identity_credential", default-features = false, features = ["validator"] } -identity_did = { version = "=0.7.0-alpha.7", path = "../identity_did", default-features = false } -identity_document = { version = "=0.7.0-alpha.7", path = "../identity_document", default-features = false } +identity_core = { version = "=0.7.0-alpha.8", path = "../identity_core", default-features = false } +identity_credential = { version = "=0.7.0-alpha.8", path = "../identity_credential", default-features = false, features = ["validator"] } +identity_did = { version = "=0.7.0-alpha.8", path = "../identity_did", default-features = false } +identity_document = { version = "=0.7.0-alpha.8", path = "../identity_document", default-features = false } serde = { version = "1.0", default-features = false, features = ["std", "derive"] } strum.workspace = true thiserror = { version = "1.0", default-features = false } [dependencies.identity_iota_core] -version = "=0.7.0-alpha.7" +version = "=0.7.0-alpha.8" path = "../identity_iota_core" default-features = false features = ["send-sync-client-ext", "iota-client"] diff --git a/identity_storage/Cargo.toml b/identity_storage/Cargo.toml index 2dff63d978..1c87898507 100644 --- a/identity_storage/Cargo.toml +++ b/identity_storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_storage" -version = "0.7.0-alpha.7" +version = "0.7.0-alpha.8" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -14,12 +14,12 @@ description = "Abstractions over storage for cryptographic keys used in DID Docu [dependencies] async-trait = { version = "0.1.64", default-features = false } futures = { version = "0.3.27", default-features = false, features = ["async-await"] } -identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core", default-features = false } -identity_credential = { version = "=0.7.0-alpha.7", path = "../identity_credential", default-features = false, features = ["credential", "presentation"] } -identity_did = { version = "=0.7.0-alpha.7", path = "../identity_did", default-features = false } -identity_document = { version = "=0.7.0-alpha.7", path = "../identity_document", default-features = false } -identity_iota_core = { version = "=0.7.0-alpha.7", path = "../identity_iota_core", default-features = false, optional = true } -identity_verification = { version = "=0.7.0-alpha.7", path = "../identity_verification", default_features = false } +identity_core = { version = "=0.7.0-alpha.8", path = "../identity_core", default-features = false } +identity_credential = { version = "=0.7.0-alpha.8", path = "../identity_credential", default-features = false, features = ["credential", "presentation"] } +identity_did = { version = "=0.7.0-alpha.8", path = "../identity_did", default-features = false } +identity_document = { version = "=0.7.0-alpha.8", path = "../identity_document", default-features = false } +identity_iota_core = { version = "=0.7.0-alpha.8", path = "../identity_iota_core", default-features = false, optional = true } +identity_verification = { version = "=0.7.0-alpha.8", path = "../identity_verification", default_features = false } iota-crypto = { version = "0.23", default-features = false, features = ["ed25519"], optional = true } rand = { version = "0.8.5", default-features = false, features = ["std", "std_rng"], optional = true } seahash = { version = "4.1.0", default_features = false } @@ -29,8 +29,8 @@ thiserror.workspace = true tokio = { version = "1.29.0", default-features = false, features = ["macros", "sync"], optional = true } [dev-dependencies] -identity_credential = { version = "=0.7.0-alpha.7", path = "../identity_credential", features = ["revocation-bitmap"] } -identity_eddsa_verifier = { version = "=0.7.0-alpha.7", path = "../identity_eddsa_verifier", default-features = false, features = ["ed25519"] } +identity_credential = { version = "=0.7.0-alpha.8", path = "../identity_credential", features = ["revocation-bitmap"] } +identity_eddsa_verifier = { version = "=0.7.0-alpha.8", path = "../identity_eddsa_verifier", default-features = false, features = ["ed25519"] } once_cell = { version = "1.18", default-features = false } tokio = { version = "1.29.0", default-features = false, features = ["macros", "sync", "rt"] } diff --git a/identity_stronghold/Cargo.toml b/identity_stronghold/Cargo.toml index 16b6f6082a..66df7d9bfb 100644 --- a/identity_stronghold/Cargo.toml +++ b/identity_stronghold/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_stronghold" -version = "0.7.0-alpha.7" +version = "0.7.0-alpha.8" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -13,8 +13,8 @@ description = "Secure JWK storage with Stronghold for IOTA Identity" [dependencies] async-trait = { version = "0.1.64", default-features = false } -identity_storage = { version = "=0.7.0-alpha.7", path = "../identity_storage", default_features = false } -identity_verification = { version = "=0.7.0-alpha.7", path = "../identity_verification", default_features = false } +identity_storage = { version = "=0.7.0-alpha.8", path = "../identity_storage", default_features = false } +identity_verification = { version = "=0.7.0-alpha.8", path = "../identity_verification", default_features = false } iota-crypto = { version = "0.23", default-features = false, features = ["ed25519"] } iota-sdk = { version = "1.0.2", default-features = false, features = ["client", "stronghold"] } iota_stronghold = { version = "2.0", default-features = false } @@ -23,7 +23,7 @@ tokio = { version = "1.29.0", default-features = false, features = ["macros", "s zeroize = { version = "1.6.0", default_features = false } [dev-dependencies] -identity_did = { version = "=0.7.0-alpha.7", path = "../identity_did", default_features = false } +identity_did = { version = "=0.7.0-alpha.8", path = "../identity_did", default_features = false } tokio = { version = "1.29.0", default-features = false, features = ["macros", "sync", "rt"] } [features] diff --git a/identity_verification/Cargo.toml b/identity_verification/Cargo.toml index be6fcdee28..a9c52b1195 100644 --- a/identity_verification/Cargo.toml +++ b/identity_verification/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_verification" -version = "0.7.0-alpha.7" +version = "0.7.0-alpha.8" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -9,9 +9,9 @@ rust-version.workspace = true description = "Verification data types and functionality for identity.rs" [dependencies] -identity_core = { version = "=0.7.0-alpha.7", path = "./../identity_core", default-features = false } -identity_did = { version = "=0.7.0-alpha.7", path = "./../identity_did", default-features = false } -identity_jose = { version = "=0.7.0-alpha.7", path = "./../identity_jose", default-features = false } +identity_core = { version = "=0.7.0-alpha.8", path = "./../identity_core", default-features = false } +identity_did = { version = "=0.7.0-alpha.8", path = "./../identity_did", default-features = false } +identity_jose = { version = "=0.7.0-alpha.8", path = "./../identity_jose", default-features = false } serde.workspace = true strum.workspace = true thiserror.workspace = true