Bump regress from 0.7.1 to 0.8.0 (#736)

Bumps [regress](https://github.com/ridiculousfish/regress) from 0.7.1 to 0.8.0.
- [Release notes](https://github.com/ridiculousfish/regress/releases)
- [Commits](https://github.com/ridiculousfish/regress/compare/v0.7.1...v0.8.0)

---
updated-dependencies:
- dependency-name: regress
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2024-03-04 09:00:12 -08:00 committed by GitHub
parent be44be38fe
commit f2611c2eac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 24 deletions

27
Cargo.lock generated
View File

@ -843,15 +843,6 @@ dependencies = [
"tracing",
]
[[package]]
name = "hashbrown"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
dependencies = [
"ahash",
]
[[package]]
name = "hashbrown"
version = "0.14.3"
@ -1023,7 +1014,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "233cf39063f058ea2caae4091bf4a3ef70a653afbc026f5c4a4135d114e3c177"
dependencies = [
"equivalent",
"hashbrown 0.14.3",
"hashbrown",
"serde",
]
@ -1408,7 +1399,7 @@ dependencies = [
"progenitor-impl",
"progenitor-macro",
"rand",
"regress 0.7.1",
"regress",
"reqwest",
"schemars",
"serde",
@ -1574,23 +1565,13 @@ version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
[[package]]
name = "regress"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ed9969cad8051328011596bf549629f1b800cf1731e7964b1eef8dfc480d2c2"
dependencies = [
"hashbrown 0.13.2",
"memchr",
]
[[package]]
name = "regress"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f5f39ba4513916c1b2657b72af6ec671f091cd637992f58d0ede5cae4e5dea0"
dependencies = [
"hashbrown 0.14.3",
"hashbrown",
"memchr",
]
@ -2417,7 +2398,7 @@ dependencies = [
"log",
"proc-macro2",
"quote",
"regress 0.8.0",
"regress",
"schemars",
"serde_json",
"syn 2.0.52",

View File

@ -21,7 +21,7 @@ chrono = { version = "0.4", features = ["serde"] }
futures = "0.3.30"
percent-encoding = "2.3"
rand = "0.8"
regress = "0.7.1"
regress = "0.8.0"
reqwest = { version = "0.11.24", features = ["json", "stream"] }
schemars = { version = "0.8.16", features = ["uuid1"] }
serde = { version = "1.0", features = ["derive"] }