From e94da8ecde4fa8d3f6948e654d4ac34156c86438 Mon Sep 17 00:00:00 2001 From: Samuel Moelius Date: Tue, 17 Sep 2024 06:49:43 -0400 Subject: [PATCH] Undo `once_cell` upgrade --- cargo-dylint/Cargo.toml | 2 +- dylint/Cargo.toml | 2 +- examples/experimental/derive_opportunity/Cargo.toml | 2 +- examples/general/abs_home_path/Cargo.toml | 2 +- .../general/non_local_effect_before_error_return/Cargo.toml | 2 +- examples/restriction/overscoped_allow/Cargo.toml | 2 +- examples/supplementary/commented_code/Cargo.toml | 2 +- examples/supplementary/escaping_doc_link/Cargo.toml | 2 +- examples/testing/marker/Cargo.toml | 2 +- internal/Cargo.toml | 2 +- utils/testing/Cargo.toml | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/cargo-dylint/Cargo.toml b/cargo-dylint/Cargo.toml index 7778ae494..fb104c13c 100644 --- a/cargo-dylint/Cargo.toml +++ b/cargo-dylint/Cargo.toml @@ -29,7 +29,7 @@ ctor = "0.2" glob = "0.3" home = "0.5" log = "0.4" -once_cell = "1.20" +once_cell = "1.19" predicates = "3.1" regex = "1.10" semver = "1.0" diff --git a/dylint/Cargo.toml b/dylint/Cargo.toml index f629dad4f..d16f50851 100644 --- a/dylint/Cargo.toml +++ b/dylint/Cargo.toml @@ -27,7 +27,7 @@ home = { version = "0.5", optional = true } if_chain = { version = "1.0", optional = true } is-terminal = "0.4" log = "0.4" -once_cell = "1.20" +once_cell = "1.19" rewriter = { version = "0.1", optional = true } semver = "1.0" serde = "1.0" diff --git a/examples/experimental/derive_opportunity/Cargo.toml b/examples/experimental/derive_opportunity/Cargo.toml index 3ee840da5..630da33e8 100644 --- a/examples/experimental/derive_opportunity/Cargo.toml +++ b/examples/experimental/derive_opportunity/Cargo.toml @@ -23,7 +23,7 @@ path = "ui_ignore/main.rs" [dependencies] clippy_utils = { git = "https://github.com/rust-lang/rust-clippy", rev = "a95afe2d0a2051d97b723b0b197393b7811bc4e4" } -once_cell = "1.20" +once_cell = "1.19" serde = "1.0" dylint_internal = { path = "../../../internal" } diff --git a/examples/general/abs_home_path/Cargo.toml b/examples/general/abs_home_path/Cargo.toml index 1a704fc6b..eeb44e7c1 100644 --- a/examples/general/abs_home_path/Cargo.toml +++ b/examples/general/abs_home_path/Cargo.toml @@ -12,7 +12,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] clippy_utils = { workspace = true } home = "0.5" -once_cell = "1.20" +once_cell = "1.19" dylint_internal = { path = "../../../internal" } dylint_linting = { path = "../../../utils/linting" } diff --git a/examples/general/non_local_effect_before_error_return/Cargo.toml b/examples/general/non_local_effect_before_error_return/Cargo.toml index 1bbefc13f..9b7763385 100644 --- a/examples/general/non_local_effect_before_error_return/Cargo.toml +++ b/examples/general/non_local_effect_before_error_return/Cargo.toml @@ -26,7 +26,7 @@ dylint_linting = { path = "../../../utils/linting" } [dev-dependencies] bitflags = "2.6" derivative = "2.2.0" -once_cell = "1.20" +once_cell = "1.19" dylint_testing = { path = "../../../utils/testing" } diff --git a/examples/restriction/overscoped_allow/Cargo.toml b/examples/restriction/overscoped_allow/Cargo.toml index 1f85066bf..db72fc70e 100644 --- a/examples/restriction/overscoped_allow/Cargo.toml +++ b/examples/restriction/overscoped_allow/Cargo.toml @@ -21,7 +21,7 @@ path = "ui_test/main.rs" anyhow = "1.0" cargo_metadata = "0.18" clippy_utils = { workspace = true } -once_cell = "1.20" +once_cell = "1.19" serde = "1.0" serde_json = "1.0" diff --git a/examples/supplementary/commented_code/Cargo.toml b/examples/supplementary/commented_code/Cargo.toml index fa8f0e939..6c5fbfc9e 100644 --- a/examples/supplementary/commented_code/Cargo.toml +++ b/examples/supplementary/commented_code/Cargo.toml @@ -11,7 +11,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] clippy_utils = { workspace = true } -once_cell = "1.20" +once_cell = "1.19" regex = "1.10" syn = { version = "2.0", features = ["full"] } diff --git a/examples/supplementary/escaping_doc_link/Cargo.toml b/examples/supplementary/escaping_doc_link/Cargo.toml index f7dffb0e6..651b06b78 100644 --- a/examples/supplementary/escaping_doc_link/Cargo.toml +++ b/examples/supplementary/escaping_doc_link/Cargo.toml @@ -13,7 +13,7 @@ crate-type = ["cdylib", "rlib"] cargo-util = "0.2" cargo_metadata = "0.18" clippy_utils = { workspace = true } -once_cell = "1.20" +once_cell = "1.19" pulldown-cmark = "0.10" dylint_linting = { path = "../../../utils/linting" } diff --git a/examples/testing/marker/Cargo.toml b/examples/testing/marker/Cargo.toml index d18d6c31b..463c4e64e 100644 --- a/examples/testing/marker/Cargo.toml +++ b/examples/testing/marker/Cargo.toml @@ -24,7 +24,7 @@ dylint_linting = { path = "../../../utils/linting" } [dev-dependencies] anyhow = "1.0" cargo_metadata = "0.18" -once_cell = "1.20" +once_cell = "1.19" regex = "1.10" tempfile = "3.12" diff --git a/internal/Cargo.toml b/internal/Cargo.toml index 0db60a165..ce275e14d 100644 --- a/internal/Cargo.toml +++ b/internal/Cargo.toml @@ -21,7 +21,7 @@ home = { version = "0.5", optional = true } if_chain = { version = "1.0", optional = true } is-terminal = { version = "0.4", optional = true } log = { version = "0.4", optional = true } -once_cell = { version = "1.20", optional = true } +once_cell = { version = "1.19", optional = true } regex = { version = "1.10", optional = true } rust-embed = { version = "8.5", features = [ "include-exclude", diff --git a/utils/testing/Cargo.toml b/utils/testing/Cargo.toml index 2595f00a1..bef2d2fa5 100644 --- a/utils/testing/Cargo.toml +++ b/utils/testing/Cargo.toml @@ -12,7 +12,7 @@ anyhow = "1.0" cargo_metadata = "0.18" compiletest_rs = "0.11" env_logger = "0.11" -once_cell = "1.20" +once_cell = "1.19" regex = "1.10" serde_json = "1.0" tempfile = "3.12"