Browse Source

Bump phf from 0.11.1 to 0.11.2 (#3068)

Bumps [phf](https://github.com/rust-phf/rust-phf) from 0.11.1 to 0.11.2.
- [Release notes](https://github.com/rust-phf/rust-phf/releases)
- [Changelog](https://github.com/rust-phf/rust-phf/blob/master/RELEASE_PROCESS.md)
- [Commits](https://github.com/rust-phf/rust-phf/compare/phf-v0.11.1...phf-v0.11.2)

---
updated-dependencies:
- dependency-name: phf
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
pull/3065/head
dependabot[bot] 1 year ago committed by GitHub
parent
commit
e7599af1fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      Cargo.lock
  2. 2
      boa_cli/Cargo.toml
  3. 2
      boa_interner/Cargo.toml
  4. 2
      boa_tester/Cargo.toml

14
Cargo.lock generated

@ -3037,9 +3037,9 @@ dependencies = [
[[package]] [[package]]
name = "phf" name = "phf"
version = "0.11.1" version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
dependencies = [ dependencies = [
"phf_macros", "phf_macros",
"phf_shared", "phf_shared",
@ -3057,22 +3057,22 @@ dependencies = [
[[package]] [[package]]
name = "phf_macros" name = "phf_macros"
version = "0.11.1" version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92aacdc5f16768709a569e913f7451034034178b05bdc8acda226659a3dccc66" checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
dependencies = [ dependencies = [
"phf_generator", "phf_generator",
"phf_shared", "phf_shared",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 1.0.109", "syn 2.0.18",
] ]
[[package]] [[package]]
name = "phf_shared" name = "phf_shared"
version = "0.11.1" version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
dependencies = [ dependencies = [
"siphasher", "siphasher",
] ]

2
boa_cli/Cargo.toml

@ -23,7 +23,7 @@ clap = { version = "4.3.8", features = ["derive"] }
serde_json = "1.0.97" serde_json = "1.0.97"
colored = "2.0.0" colored = "2.0.0"
regex = "1.8.4" regex = "1.8.4"
phf = { version = "0.11.1", features = ["macros"] } phf = { version = "0.11.2", features = ["macros"] }
pollster = "0.3.0" pollster = "0.3.0"
[features] [features]

2
boa_interner/Cargo.toml

@ -17,7 +17,7 @@ std = ["once_cell/std"]
[dependencies] [dependencies]
boa_macros.workspace = true boa_macros.workspace = true
boa_gc.workspace = true boa_gc.workspace = true
phf = { version = "0.11.1", default-features = false, features = ["macros"] } phf = { version = "0.11.2", default-features = false, features = ["macros"] }
rustc-hash = { version = "1.1.0", default-features = false } rustc-hash = { version = "1.1.0", default-features = false }
static_assertions = "1.1.0" static_assertions = "1.1.0"
once_cell = {version = "1.18.0", default-features = false, features = ["critical-section"]} once_cell = {version = "1.18.0", default-features = false, features = ["critical-section"]}

2
boa_tester/Cargo.toml

@ -26,7 +26,7 @@ fxhash = "0.2.1"
rayon = "1.7.0" rayon = "1.7.0"
toml = "0.7.4" toml = "0.7.4"
color-eyre = "0.6.2" color-eyre = "0.6.2"
phf = { version = "0.11.1", features = ["macros"] } phf = { version = "0.11.2", features = ["macros"] }
comfy-table = "7.0.1" comfy-table = "7.0.1"
serde_repr = "0.1.12" serde_repr = "0.1.12"

Loading…
Cancel
Save