Bump regress from 0.4.1 to 0.5.0 (#364)

Bumps [regress](https://github.com/ridiculousfish/regress) from 0.4.1 to 0.5.0.
- [Release notes](https://github.com/ridiculousfish/regress/releases)
- [Commits](https://github.com/ridiculousfish/regress/compare/v0.4.1...v0.5.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] 2023-03-17 14:34:25 -07:00 committed by GitHub
parent 073df9aa14
commit af32316b94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 4 deletions

36
Cargo.lock generated
View File

@ -2,6 +2,17 @@
# It is not intended for manual editing.
version = 3
[[package]]
name = "ahash"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
dependencies = [
"cfg-if",
"once_cell",
"version_check",
]
[[package]]
name = "aho-corasick"
version = "0.7.18"
@ -631,6 +642,15 @@ version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3"
[[package]]
name = "hashbrown"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
dependencies = [
"ahash",
]
[[package]]
name = "heck"
version = "0.4.1"
@ -778,7 +798,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
dependencies = [
"autocfg",
"hashbrown",
"hashbrown 0.12.1",
"serde",
]
@ -1178,7 +1198,7 @@ dependencies = [
"progenitor-macro",
"project-root",
"rand",
"regress",
"regress 0.5.0",
"reqwest",
"schemars",
"serde",
@ -1332,6 +1352,16 @@ dependencies = [
"memchr",
]
[[package]]
name = "regress"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d995d590bd8ec096d1893f414bf3f5e8b0ee4c9eed9a5642b9766ef2c8e2e8e9"
dependencies = [
"hashbrown 0.13.2",
"memchr",
]
[[package]]
name = "remove_dir_all"
version = "0.5.3"
@ -2040,7 +2070,7 @@ dependencies = [
"log",
"proc-macro2",
"quote",
"regress",
"regress 0.4.1",
"rustfmt-wrapper",
"schemars",
"serde_json",

View File

@ -31,7 +31,7 @@ chrono = { version = "0.4", features = ["serde"] }
futures = "0.3.26"
percent-encoding = "2.2"
rand = "0.8"
regress = "0.4.1"
regress = "0.5.0"
reqwest = { version = "0.11.14", features = ["json", "stream"] }
schemars = { version = "0.8.12", features = ["uuid1"] }
uuid = { version = "1.3", features = ["serde", "v4"] }