Bump regress from 0.5.0 to 0.6.0 (#449)

Bumps [regress](https://github.com/ridiculousfish/regress) from 0.5.0 to 0.6.0.
- [Release notes](https://github.com/ridiculousfish/regress/releases)
- [Commits](https://github.com/ridiculousfish/regress/compare/v0.5.0...v0.6.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-05-01 14:25:16 -07:00 committed by GitHub
parent 6ad63a3fc2
commit 235445e6b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 3 deletions

14
Cargo.lock generated
View File

@ -1284,7 +1284,7 @@ dependencies = [
"progenitor-macro", "progenitor-macro",
"project-root", "project-root",
"rand", "rand",
"regress", "regress 0.6.0",
"reqwest", "reqwest",
"rustfmt-wrapper", "rustfmt-wrapper",
"schemars", "schemars",
@ -1440,6 +1440,16 @@ dependencies = [
"memchr", "memchr",
] ]
[[package]]
name = "regress"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "82a9ecfa0cb04d0b04dddb99b8ccf4f66bc8dfd23df694b398570bd8ae3a50fb"
dependencies = [
"hashbrown 0.13.2",
"memchr",
]
[[package]] [[package]]
name = "remove_dir_all" name = "remove_dir_all"
version = "0.5.3" version = "0.5.3"
@ -2203,7 +2213,7 @@ dependencies = [
"log", "log",
"proc-macro2", "proc-macro2",
"quote", "quote",
"regress", "regress 0.5.0",
"schemars", "schemars",
"serde_json", "serde_json",
"syn 2.0.15", "syn 2.0.15",

View File

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