diff --git a/Cargo.lock b/Cargo.lock index a468109f5e..6fd42098ed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6171,9 +6171,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.8.0" +version = "1.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" +checksum = "5de17fd2f7da591098415cff336e12965a28061ddace43b59cb3c430179c9439" dependencies = [ "getrandom 0.2.10", "serde", diff --git a/aries/agents/aath-backchannel/Cargo.toml b/aries/agents/aath-backchannel/Cargo.toml index b102faa63e..0aa6b80fac 100644 --- a/aries/agents/aath-backchannel/Cargo.toml +++ b/aries/agents/aath-backchannel/Cargo.toml @@ -16,7 +16,7 @@ serde_json = "1.0.40" serde_derive = "1.0.97" log = "^0.4.20" env_logger = "0.11.3" -uuid = { version = "1.8.0", features = ["serde", "v4"] } +uuid = { version = "1.9.1", features = ["serde", "v4"] } aries-vcx-agent = { path = "../../../aries/agents/aries-vcx-agent" } anoncreds_types = { path = "../../../aries/misc/anoncreds_types" } display_as_json = { path = "../../../misc/display_as_json" } diff --git a/aries/agents/aries-vcx-agent/Cargo.toml b/aries/agents/aries-vcx-agent/Cargo.toml index 05b558fe1f..7be5cc75a9 100644 --- a/aries/agents/aries-vcx-agent/Cargo.toml +++ b/aries/agents/aries-vcx-agent/Cargo.toml @@ -24,7 +24,7 @@ async-trait = "0.1.64" derive_builder = "0.12.0" serde_json = "1.0.85" log = "0.4.17" -uuid = "1.2.1" +uuid = "1.9.1" thiserror = "1.0.37" url = { version = "2.3.1", features = ["serde"] } display_as_json = { path = "../../../misc/display_as_json" } diff --git a/aries/agents/mediator/Cargo.toml b/aries/agents/mediator/Cargo.toml index d354ea8fcb..d3bfe475e1 100644 --- a/aries/agents/mediator/Cargo.toml +++ b/aries/agents/mediator/Cargo.toml @@ -32,7 +32,7 @@ thiserror = "1.0.49" tokio = { version = "1", features = ["rt-multi-thread", "macros"] } tower-http = { version = "0.4.4", features = ["catch-panic"] } url = "2.4.1" -uuid = "1.4.1" +uuid = "1.9.1" test_utils = { path = "../../misc/test_utils" } base64-url = "2.0.0" diff --git a/aries/aries_vcx/Cargo.toml b/aries/aries_vcx/Cargo.toml index b12f852c4c..84a0874638 100644 --- a/aries/aries_vcx/Cargo.toml +++ b/aries/aries_vcx/Cargo.toml @@ -67,7 +67,7 @@ base64 = "0.21.4" sha2 = "0.10.7" num-bigint = "0.4.5" futures = { version = "0.3", default-features = false } -uuid = { version = "1.4.1", default-features = false, features = ["v4"] } +uuid = { version = "1.9.1", default-features = false, features = ["v4"] } strum = "0.25.0" strum_macros = "0.25.2" derive_builder = "0.12.0" diff --git a/aries/aries_vcx_anoncreds/Cargo.toml b/aries/aries_vcx_anoncreds/Cargo.toml index 231d240a6a..5f10e13348 100644 --- a/aries/aries_vcx_anoncreds/Cargo.toml +++ b/aries/aries_vcx_anoncreds/Cargo.toml @@ -21,7 +21,7 @@ did_parser_nom = { path = "../../did_core/did_parser_nom" } async-trait = "0.1.68" thiserror = "1.0.40" log = "0.4.17" -uuid = { version = "1.3.0", default-features = false, features = ["v4"] } +uuid = { version = "1.9.1", default-features = false, features = ["v4"] } serde = { version = "1.0.159", features = ["derive"] } serde_json = "1.0.95" time = "0.3.20" diff --git a/aries/aries_vcx_wallet/Cargo.toml b/aries/aries_vcx_wallet/Cargo.toml index 9b6207b13b..a22e75107d 100644 --- a/aries/aries_vcx_wallet/Cargo.toml +++ b/aries/aries_vcx_wallet/Cargo.toml @@ -27,7 +27,7 @@ rand = "0.8.5" thiserror = "1.0.40" tokio = { version = "1.38" } typed-builder = "0.18.1" -uuid = { version = "1.3.0", default-features = false, features = ["v4"] } +uuid = { version = "1.9.1", default-features = false, features = ["v4"] } [dev-dependencies] tokio = { version = "1.38", features = ["rt", "macros", "rt-multi-thread"] } diff --git a/aries/misc/wallet_migrator/Cargo.toml b/aries/misc/wallet_migrator/Cargo.toml index 75aac11e14..8376562f83 100644 --- a/aries/misc/wallet_migrator/Cargo.toml +++ b/aries/misc/wallet_migrator/Cargo.toml @@ -20,6 +20,6 @@ public_key = { path = "../../../did_core/public_key"} [dev-dependencies] tokio = { version = "1.38.0", features = ["macros", "rt"] } -uuid = { version = "1.3.0", default-features = false, features = ["v4"] } +uuid = { version = "1.9.1", default-features = false, features = ["v4"] } test-log = "0.2.14" diff --git a/did_core/did_methods/did_resolver_sov/Cargo.toml b/did_core/did_methods/did_resolver_sov/Cargo.toml index 7bf83330b3..73f1e02f15 100644 --- a/did_core/did_methods/did_resolver_sov/Cargo.toml +++ b/did_core/did_methods/did_resolver_sov/Cargo.toml @@ -18,6 +18,6 @@ log = "0.4.16" mockall = "0.11.4" aries_vcx = { path = "../../../aries/aries_vcx" } tokio = { version = "1.38.0", default-features = false, features = ["macros", "rt"] } -uuid = "1.3.1" +uuid = "1.9.1" test_utils = {path = "../../../aries/misc/test_utils", features = ["vdrtools_wallet"] } aries_vcx_wallet = { path = "../../../aries/aries_vcx_wallet" }