Skip to content

Commit

Permalink
Undo once_cell upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Sep 17, 2024
1 parent 1201cad commit e94da8e
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion cargo-dylint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion dylint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/experimental/derive_opportunity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion examples/general/abs_home_path/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down
2 changes: 1 addition & 1 deletion examples/restriction/overscoped_allow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion examples/supplementary/commented_code/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

Expand Down
2 changes: 1 addition & 1 deletion examples/supplementary/escaping_doc_link/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion examples/testing/marker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion internal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion utils/testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit e94da8e

Please sign in to comment.