Browse Source

chore(boa): update criterion from 0.3.2 to 0.3.3 (#742)

was blocked due to incompatibilities with `critcmp`, however,
`critcmp` has released v0.1.4 and so `critcmp` is no longer functional
with older versions of criterion. This may require criterion compare
action modification
pull/744/head
neeldug 4 years ago committed by GitHub
parent
commit
be6ac0c120
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 21
      Cargo.lock
  2. 2
      boa/Cargo.toml

21
Cargo.lock generated

@ -234,9 +234,9 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
[[package]]
name = "criterion"
version = "0.3.2"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63f696897c88b57f4ffe3c69d8e1a0613c7d0e6c4833363c8560fbde9c47b966"
checksum = "70daa7ceec6cf143990669a04c7df13391d55fb27bd4079d252fca774ba244d8"
dependencies = [
"atty",
"cast",
@ -251,6 +251,7 @@ dependencies = [
"rayon",
"regex",
"serde",
"serde_cbor",
"serde_derive",
"serde_json",
"tinytemplate",
@ -425,6 +426,12 @@ dependencies = [
"wasi 0.9.0+wasi-snapshot-preview1",
]
[[package]]
name = "half"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d36fab90f82edc3c747f9d438e06cf0a491055896f2a279638bb5beed6c40177"
[[package]]
name = "hashbrown"
version = "0.9.0"
@ -951,6 +958,16 @@ dependencies = [
"serde_derive",
]
[[package]]
name = "serde_cbor"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e18acfa2f90e8b735b2836ab8d538de304cbb6729a7360729ea5a895d15a622"
dependencies = [
"half",
"serde",
]
[[package]]
name = "serde_derive"
version = "1.0.116"

2
boa/Cargo.toml

@ -33,7 +33,7 @@ measureme = { version = "0.7.1", optional = true }
once_cell = { version = "1.4.1", optional = true }
[dev-dependencies]
criterion = "=0.3.2" # critcmp is not compatible with 0.3.3
criterion = "0.3.3"
float-cmp = "0.8.0"
[target.x86_64-unknown-linux-gnu.dev-dependencies]

Loading…
Cancel
Save