Update Rust crate uuid to v1 (#23)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Valery Antopol <valery.antopol@gmail.com>
This commit is contained in:
renovate[bot] 2022-09-13 16:49:01 +03:00 committed by GitHub
parent 97f50f104c
commit a4e849f3e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 27 additions and 18 deletions

21
Cargo.lock generated
View File

@ -695,7 +695,7 @@ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
[[package]]
name = "marine-build-rs-generator"
version = "0.7.1"
version = "0.7.2"
dependencies = [
"marine-test-macro-impl",
]
@ -800,7 +800,7 @@ dependencies = [
"serde",
"serde_json",
"syn",
"uuid",
"uuid 0.8.2",
]
[[package]]
@ -882,7 +882,7 @@ dependencies = [
[[package]]
name = "marine-rs-sdk-test"
version = "0.7.1"
version = "0.7.2"
dependencies = [
"fluence-app-service",
"marine-build-rs-generator",
@ -890,7 +890,7 @@ dependencies = [
"serde",
"serde_json",
"trybuild",
"uuid",
"uuid 1.1.2",
]
[[package]]
@ -924,7 +924,7 @@ dependencies = [
[[package]]
name = "marine-test-macro"
version = "0.7.1"
version = "0.7.2"
dependencies = [
"marine-test-macro-impl",
"proc-macro-error",
@ -935,7 +935,7 @@ dependencies = [
[[package]]
name = "marine-test-macro-impl"
version = "0.7.1"
version = "0.7.2"
dependencies = [
"darling 0.14.1",
"fluence-app-service",
@ -1519,6 +1519,15 @@ dependencies = [
"getrandom 0.2.3",
]
[[package]]
name = "uuid"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f"
dependencies = [
"getrandom 0.2.3",
]
[[package]]
name = "variant_count"
version = "1.1.0"

View File

@ -1,6 +1,6 @@
[package]
name = "marine-rs-sdk-test"
version = "0.7.1" # remember to update html_root_url
version = "0.7.2"
description = "Backend SDK that allows testing modules for the Marine runtime"
documentation = "https://docs.rs/marine-rs-sdk-test"
repository = "https://github.com/fluencelabs/marine-rs-sdk-test"
@ -21,13 +21,13 @@ doctest = false
trybuild = "1.0"
[dependencies]
marine-test-macro = { path = "crates/marine-test-macro", version = "=0.7.1" }
marine-build-rs-generator = { path = "crates/marine-build-rs-generator", version = "=0.7.1" }
marine-test-macro = { path = "crates/marine-test-macro", version = "=0.7.2" }
marine-build-rs-generator = { path = "crates/marine-build-rs-generator", version = "=0.7.2" }
fluence-app-service = { version = "0.20.0", features = ["raw-module-api"] }
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.85"
uuid = { version = "0.8.2", features = ["v4"] }
uuid = { version = "1.1.2", features = ["v4"] }
[workspace]
members = [

View File

@ -1,6 +1,6 @@
[package]
name = "marine-build-rs-generator"
version = "0.7.1" # remember to update html_root_url
version = "0.7.2"
edition = "2018"
description = "Tools for generating marine_test_env in build scripts"
documentation = "https://docs.rs/marine-build-rs-generator"
@ -17,4 +17,4 @@ all-features = true
doctest = false
[dependencies]
marine-test-macro-impl = { path = "../marine-test-macro-impl", version = "=0.7.1" }
marine-test-macro-impl = { path = "../marine-test-macro-impl", version = "=0.7.2" }

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
#![doc(html_root_url = "https://docs.rs/marine-build-rs-generator/0.7.1")]
#![doc(html_root_url = "https://docs.rs/marine-build-rs-generator/0.7.2")]
#![deny(
dead_code,
nonstandard_style,

View File

@ -1,6 +1,6 @@
[package]
name = "marine-test-macro-impl"
version = "0.7.1" # remember to update html_root_url
version = "0.7.2"
edition = "2018"
description = "Implementation of the `#[marine_test]` macro"
documentation = "https://docs.rs/fluence/marine-test-macro-impl"

View File

@ -1,6 +1,6 @@
[package]
name = "marine-test-macro"
version = "0.7.1" # remember to update html_root_url
version = "0.7.2"
edition = "2018"
description = "Definition of the `#[marine_test]` macro"
documentation = "https://docs.rs/fluence/marine-test-macro"
@ -18,7 +18,7 @@ proc-macro = true
doctest = false
[dependencies]
marine-test-macro-impl = { path = "../marine-test-macro-impl", version = "=0.7.1" }
marine-test-macro-impl = { path = "../marine-test-macro-impl", version = "=0.7.2" }
quote = "1.0.21"
proc-macro2 = "1.0.43"

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
#![doc(html_root_url = "https://docs.rs/marine-test-macro/0.7.1")]
#![doc(html_root_url = "https://docs.rs/marine-test-macro/0.7.2")]
#![deny(
dead_code,
nonstandard_style,

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
#![doc(html_root_url = "https://docs.rs/marine-rs-sdk-test/0.7.1")]
#![doc(html_root_url = "https://docs.rs/marine-rs-sdk-test/0.7.2")]
#![deny(
dead_code,
nonstandard_style,