From 44f39e3001c79b5a15865f7dbb3b698c3de0d1ab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 23:11:23 +0000 Subject: [PATCH 1/2] Update fancy-regex requirement from 0.11.0 to 0.12.0 Updates the requirements on [fancy-regex](https://github.com/fancy-regex/fancy-regex) to permit the latest version. - [Release notes](https://github.com/fancy-regex/fancy-regex/releases) - [Changelog](https://github.com/fancy-regex/fancy-regex/blob/main/CHANGELOG.md) - [Commits](https://github.com/fancy-regex/fancy-regex/compare/0.11.0...0.12.0) --- updated-dependencies: - dependency-name: fancy-regex dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- libcnb-data/Cargo.toml | 2 +- libcnb-proc-macros/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libcnb-data/Cargo.toml b/libcnb-data/Cargo.toml index 6071920c..192ef024 100644 --- a/libcnb-data/Cargo.toml +++ b/libcnb-data/Cargo.toml @@ -12,7 +12,7 @@ readme = "README.md" include = ["src/**/*", "LICENSE", "README.md"] [dependencies] -fancy-regex = { version = "0.11.0", default-features = false } +fancy-regex = { version = "0.12.0", default-features = false } libcnb-proc-macros.workspace = true serde = { version = "1.0.188", features = ["derive"] } thiserror = "1.0.48" diff --git a/libcnb-proc-macros/Cargo.toml b/libcnb-proc-macros/Cargo.toml index c8ca5b5a..dd2a3097 100644 --- a/libcnb-proc-macros/Cargo.toml +++ b/libcnb-proc-macros/Cargo.toml @@ -15,6 +15,6 @@ proc-macro = true [dependencies] cargo_metadata = "0.18.0" -fancy-regex = { version = "0.11.0", default-features = false } +fancy-regex = { version = "0.12.0", default-features = false } quote = "1.0.33" syn = { version = "2.0.37", features = ["full"] } From 1e096e8671c9ce16ae23b49f03f5e10a0486dd55 Mon Sep 17 00:00:00 2001 From: Ed Morley <501702+edmorley@users.noreply.github.com> Date: Wed, 15 Nov 2023 10:26:13 +0000 Subject: [PATCH 2/2] Add new `std` feature Since we disable all default features, which includes the new`std` feature otherwise. --- libcnb-data/Cargo.toml | 2 +- libcnb-proc-macros/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libcnb-data/Cargo.toml b/libcnb-data/Cargo.toml index 192ef024..cdcfbc8a 100644 --- a/libcnb-data/Cargo.toml +++ b/libcnb-data/Cargo.toml @@ -12,7 +12,7 @@ readme = "README.md" include = ["src/**/*", "LICENSE", "README.md"] [dependencies] -fancy-regex = { version = "0.12.0", default-features = false } +fancy-regex = { version = "0.12.0", default-features = false, features = ["std"] } libcnb-proc-macros.workspace = true serde = { version = "1.0.188", features = ["derive"] } thiserror = "1.0.48" diff --git a/libcnb-proc-macros/Cargo.toml b/libcnb-proc-macros/Cargo.toml index dd2a3097..ba400f55 100644 --- a/libcnb-proc-macros/Cargo.toml +++ b/libcnb-proc-macros/Cargo.toml @@ -15,6 +15,6 @@ proc-macro = true [dependencies] cargo_metadata = "0.18.0" -fancy-regex = { version = "0.12.0", default-features = false } +fancy-regex = { version = "0.12.0", default-features = false, features = ["std"] } quote = "1.0.33" syn = { version = "2.0.37", features = ["full"] }