Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the production-dependencies group with 22 updates #84

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2024

Bumps the production-dependencies group with 22 updates:

Package From To
base64 0.21.4 0.21.5
once_cell 1.18.0 1.19.0
prost 0.12.0 0.12.3
prost-types 0.12.0 0.12.3
insta 1.31.0 1.34.0
proptest 1.2.0 1.4.0
prost-build 0.12.0 0.12.3
protox 0.5.0 0.5.1
serde_json 1.0.106 1.0.109
serde_yaml 0.9.25 0.9.29
proc-macro2 1.0.66 1.0.73
quote 1.0.33 1.0.34
syn 2.0.32 2.0.44
trybuild 1.0.84 1.0.86
serde 1.0.190 1.0.193
criterion 0.4.0 0.5.1
rayon 1.7.0 1.8.0
env_logger 0.10.0 0.10.1
flate2 1.0.27 1.0.28
ureq 2.7.1 2.9.1
anyhow 1.0.75 1.0.78
tempfile 3.8.0 3.9.0

Updates base64 from 0.21.4 to 0.21.5

Changelog

Sourced from base64's changelog.

0.21.5

  • Add Debug and Clone impls for the general purpose Engine
Commits
  • 7f81baf v0.21.5
  • 95dda57 Merge pull request #255 from marshallpierce/mp/debug
  • bda313a Add Debug and Clone to general purpose Engine
  • 53a8737 Merge pull request #254 from marshallpierce/mp/ci-all-targets
  • c423b6e CI for all targets w/o default features
  • 9eaf503 Merge pull request #253 from kpreid/features-and-build
  • 04451fb Allow cargo test to complete under any set of features.
  • 2ee1a00 no_std import simplification.
  • See full diff in compare view

Updates once_cell from 1.18.0 to 1.19.0

Changelog

Sourced from once_cell's changelog.

1.19.0

  • Use portable-atomic instead of atomic-polyfill, #251.
Commits

Updates prost from 0.12.0 to 0.12.3

Commits

Updates prost-types from 0.12.0 to 0.12.3

Commits

Updates insta from 1.31.0 to 1.34.0

Changelog

Sourced from insta's changelog.

1.34.0

  • Snapshots are now sorted in the UI on review. (#413)
  • Re-organized repository to move cargo-insta into a workspace. (#410)
  • Fixed handling of --manifest-path with regards to virtual workspaces. (#409)

1.33.0

  • Added --all-targets parameter support to cargo insta test. (#408)

1.32.0

  • Added --profile parameter support to cargo insta test.
Commits

Updates proptest from 1.2.0 to 1.4.0

Commits

Updates prost-build from 0.12.0 to 0.12.3

Commits

Updates protox from 0.5.0 to 0.5.1

Changelog

Sourced from protox's changelog.

[0.5.1] - 2023-11-02

Added

  • The prost and prost-reflect dependencies are now re-exported at the crate root, for easier use in build scripts.
Commits

Updates serde_json from 1.0.106 to 1.0.109

Release notes

Sourced from serde_json's releases.

v1.0.109

  • Documentation improvements

v1.0.108

v1.0.107

  • impl IntoDeserializer for &RawValue (#1071)
Commits
  • f88bf1f Release 1.0.109
  • bb62c73 Merge pull request #1097 from serde-rs/doccfg
  • df36d10 Restore doc cfg on re-exports
  • c367091 Merge pull request #1095 from dtolnay/hashtest
  • b328ee7 Eliminate hash closure in favor of calling hash_one directly
  • b9bcbad Use BuildHasher::hash_one
  • 7ff6c9e Use random hasher state for number hashing test
  • fe031cd Delete trace_macros! functionality from test
  • 05196ca Update ui test suite to nightly-2023-11-19
  • 4bc1eaa Release 1.0.108
  • Additional commits viewable in compare view

Updates serde_yaml from 0.9.25 to 0.9.29

Release notes

Sourced from serde_yaml's releases.

0.9.29

  • Turn on deny(unsafe_op_in_unsafe_fn) lint

0.9.28

  • Update unsafe-libyaml dependency to pull in unaligned write fix

0.9.27

  • Always serialize serde_yaml::Number containing NaN as a positive NaN (#394)

0.9.26

  • Guarantee that .nan is deserialized as a positive NaN (#392, #393)
Commits
  • b957d2b Release 0.9.29
  • 007fc2d Merge pull request #401 from dtolnay/unsafeop
  • 5bac247 Fill in unsafe blocks inside unsafe functions
  • 0f6dba1 Turn on deny(unsafe_op_in_unsafe_fn)
  • 1b6e448 Release 0.9.28
  • ec1a314 Force unsafe-libyaml version that contains unaligned write fix
  • a6b2dc0 Update name of blocks_in_if_conditions clippy lint
  • 66ec2cf Release 0.9.27
  • 23069f2 Merge pull request #394 from dtolnay/numbernan
  • 1cda03f Destroy NaN signaling and payload too
  • Additional commits viewable in compare view

Updates proc-macro2 from 1.0.66 to 1.0.73

Release notes

Sourced from proc-macro2's releases.

1.0.73

  • Documentation improvements

1.0.72

  • Improve build script to be robust to proc_macro::Span unstable API changes

1.0.71

  • Turn on deny(unsafe_op_in_unsafe_fn) lint

1.0.70

  • Add #[track_caller] on Ident::new so that panics on invalid input are attributed to the caller (#423)

1.0.69

  • Fix Span::source_text() bug causing panics or incorrect source text (#410)

1.0.68

  • Fix panic in Span::source_text() when source contains multibyte characters (#408)

1.0.67

  • Special handling for the (/*ERROR*/) placeholder that rustc uses for macros that fail to expand (#405)
Commits
  • 4dce5d7 Release 1.0.73
  • 708540b Merge pull request #431 from dtolnay/doccfg
  • 014fa82 Restore documented cfg on LineColumn
  • df4fa83 Merge pull request #430 from dtolnay/nightlyci
  • 75897cf Make CI verify that proc_macro_span works in latest nightly
  • 643cb89 Release 1.0.72
  • 3db1977 Merge pull request #429 from dtolnay/probe
  • a961bae Test for the specific proc_macro_span API expected by proc-macro2
  • 784ae2e Merge pull request #428 from dtolnay/cargoenvvar
  • 8ade7da Require cargo promised environment variables to be present
  • Additional commits viewable in compare view

Updates quote from 1.0.33 to 1.0.34

Release notes

Sourced from quote's releases.

1.0.34

  • Documentation improvements
Commits

Updates syn from 2.0.32 to 2.0.44

Release notes

Sourced from syn's releases.

2.0.44

  • Documentation improvements

2.0.43

  • Insert trailing comma if not already present when printing a 1-tuple in pattern position (#1553)

2.0.42

  • Documentation improvements

2.0.41

  • Support parsing syn::Field in parse_quote! (#1548)

2.0.40

2.0.39

  • Fix parsing of return expression in match guards (#1528)
  • Improve error message on labeled loop as value expression for break (#1531)

2.0.38

  • Fix "method 'peek' has an incompatible type for trait" error when defining bool as a custom keyword (#1518, thanks @​Vanille-N)

2.0.37

  • Work around incorrect future compatibility warning in rustc 1.74.0-nightly

2.0.36

  • Restore compatibility with --generate-link-to-definition documentation builds (#1514)

2.0.35

  • Make rust-analyzer produce preferred brackets for invocations of Token! macro (#1510, #1512)

2.0.34

  • Documentation improvements

2.0.33

  • Special handling for the (/*ERROR*/) placeholder that rustc uses for macros that fail to expand
Commits
  • 58b42f5 Release 2.0.44
  • 4523437 Merge pull request #1569 from dtolnay/cfgvisit
  • 694a1bb Render doc cfg on Visit/VisitMut/Fold trait methods
  • 1728630 Add doc cfg on Error::new_spanned
  • 649e426 Mark exprs which are not parsed in "derive" mode as "full"-only
  • 6c4627f Fill in missing doc cfg on Expr and Pat nodes
  • 1cea0be Merge pull request #1568 from dtolnay/doccfg
  • dc2153d Restore doc cfg on re-exports
  • e2b6ebc Fix typo in ast_enum cfg
  • a193361 Fix unused_macros warning on ast_enum when features are disabled
  • Additional commits viewable in compare view

Updates trybuild from 1.0.84 to 1.0.86

Release notes

Sourced from trybuild's releases.

1.0.86

1.0.85

  • Set thread name to produce better message on panic (#243, #244)
Commits
  • a6cbfe8 Release 1.0.86
  • 7c5a8fe Merge pull request #252 from dtolnay/cargofeatures
  • d3cd15b Propagate cargo features from source manifest
  • c28428d Merge pull request #251 from dtolnay/skipcargofeatures
  • 3e4029e Omit cargo-features from generated Cargo.toml if empty
  • 6653404 Merge pull request #250 from mohe2015/edition-2024
  • ee0a562 Support edition 2024
  • 8f62662 Ignore uninhabited_references clippy lint
  • c1f2d24 Ignore test_attr_in_doctest clippy lint
  • aa98d35 Test docs.rs documentation build in CI
  • Additional commits viewable in compare view

Updates serde from 1.0.190 to 1.0.193

Release notes

Sourced from serde's releases.

v1.0.193

v1.0.192

v1.0.191

  • Documentation improvements
Commits
  • 44613c7 Release 1.0.193
  • c706281 Merge pull request #2655 from dtolnay/rangestartend
  • 65d75b8 Add RangeFrom and RangeTo tests
  • 332b0cb Merge pull request #2654 from dtolnay/rangestartend
  • 8c4af41 Fix more RangeFrom / RangeEnd mixups
  • 24a78f0 Merge pull request #2653 from emilbonnek/fix/range-to-from-de-mixup
  • c91c334 Fix Range{From,To} deserialize mixup
  • 2083f43 Update ui test suite to nightly-2023-11-19
  • 4676abd Release 1.0.192
  • 35700eb Merge pull request #2646 from robsdedude/fix/2643/allow-tag-field-in-untagged
  • Additional commits viewable in compare view

Updates criterion from 0.4.0 to 0.5.1

Changelog

Sourced from criterion's changelog.

[0.5.1] - 2023-05-26

Fixed

  • Quick mode (--quick) no longer crashes with measured times over 5 seconds when --noplot is not active

[0.5.0] - 2023-05-23

Changed

  • Replaced lazy_static dependency with once_cell
  • Improved documentation of the html_reports feature
  • Replaced atty dependency with is-terminal
  • MSRV bumped to 1.64
  • Upgraded clap dependency to v4
  • Upgraded tempfile dependency to v3.5.0

Fixed

  • Quick mode (--quick) no longer outputs 1ms for measured times over 5 seconds
  • Documentation updates
Commits

Updates rayon from 1.7.0 to 1.8.0

Changelog

Sourced from rayon's changelog.

Release rayon 1.8.0 / rayon-core 1.12.0 (2023-09-20)

  • The minimum supported rustc is now 1.63.
  • Added ThreadPoolBuilder::use_current_thread to use the builder thread as part of the new thread pool. That thread does not run the pool's main loop, but it may participate in work-stealing if it yields to rayon in some way.
  • Implemented FromParallelIterator<T> for Box<[T]>, Rc<[T]>, and Arc<[T]>, as well as FromParallelIterator<Box<str>> and ParallelExtend<Box<str>> for String.
  • ThreadPoolBuilder::build_scoped now uses std::thread::scope.
  • The default number of threads is now determined using std::thread::available_parallelism instead of the num_cpus crate.
  • The internal logging facility has been removed, reducing bloat for all users.
  • Many smaller performance tweaks and documentation updates.
Commits

Updates env_logger from 0.10.0 to 0.10.1

Changelog

Sourced from env_logger's changelog.

[0.10.1] - 2023-11-10

Commits
  • 36623f5 chore: Release env_logger version 0.10.1
  • 8a033d8 chore: Fix packaging
  • 9df7e6c Merge pull request #241 from ChrisDenton/simple-insert
  • 46ccdd9 perf: Replace HashMap with a Vec
  • bdc96a4 Merge pull request #249 from atouchet/v10
  • 983837c Update links and remove broken badge
  • dcd220d Update listed version number
  • 36b1508 Merge pull request #260 from y-yagi/2018-edition
  • 6f64347 Merge pull request #282 from epage/syntax
  • b297357 chore: Update docs and examples to 2018 edition
  • Additional commits viewable in compare view

Updates flate2 from 1.0.27 to 1.0.28

Release notes

Sourced from flate2's releases.

1.0.28

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.27...1.0.28

Commits
  • a99b53e Merge pull request #378 from Byron/prep-release
  • 223f829 Merge pull request #380 from Manishearth/reset-stream
  • 7a61ea5 Reset StreamWrapper after calling mz_inflate / mz_deflate
  • 1260d3e prepare next patch-release
  • f62ff42 Merge pull request #375 from georeth/fix-read-doc
  • 5b23cc9 Fix and unify docs of bufread and read types.
  • f285e9a Merge pull request #373 from anforowicz/fix-spare-capacity-handling
  • 69972b8 Fix soundness of write_to_spare_capacity_of_vec.
  • 82e45fa Refactoring: Dedupe code into write_to_spare_capacity_of_vec helper.
  • 20cdcbe Merge pull request #371 from jongiddy/jgiddy/msrv-1.53
  • Additional commits viewable in compare view

Updates ureq from 2.7.1 to 2.9.1

Changelog

Sourced from ureq's changelog.

2.9.1

Fixed

  • Unbreak feature http-interop. This feature is version locked to http crate 0.2
  • New feature http-crate. This feature is for http crate 1.0
  • New feature proxy-from-env to detect proxy settings for global Agent (ureq::get).

2.9.0

Fixed

  • Broken rustls dep (introduced new function in patch version) (#677)
  • Doc and test fixes (#670, #673, #674)

Added

  • Upgraded http dep to 1.0
  • http_interop to not require utf-8 headers (#672)
  • http_interop implement conversion for http::request::Parts (#669)

2.8.0

Fixed

  • Fix regression in IPv6 handling (#635)
  • Read proxy response to \r\n\r\n (#620)

Added

  • Auto-detect proxy from env vars (turned off by default) (#649)
  • Conversion ureq::Response -> http::Response (#638)
  • cargo-deny CI action to disallow copy-left and duplicate deps (#661)
Commits
  • 9092222 2.9.1
  • 7369043 Rename feature http -> http-crate
  • 87108e0 Support both http 0.2 and 1.0
  • 89a69a5 docs: update doc comment on try_proxy_from_env method to reflect the `proxy...
  • 395218d feat: add a feature flag "proxy-from-env" to control whether or not to detect...
  • 260213b 2.9.0
  • c83ba95 Update changelog
  • 07b8925 Simpler version expression for rustls dep
  • c1bc86a http 1.0
  • 916ffbf Fix missing add_trust_anchors method due to lax rustls versioning
  • Additional commits viewable in compare view

Updates anyhow from 1.0.75 to 1.0.78

Release notes

Sourced from anyhow's releases.

1.0.78

  • Reduce spurious rebuilds under RustRover IDE when using a nightly toolchain (#337)

1.0.77

1.0.76

  • Opt in to unsafe_op_in_unsafe_fn lint (#329)
Commits
  • 38c79ef Release 1.0.78
  • ded2295 Merge pull request #337 from dtolnay/bootstrap
  • ae45b67 Do not rebuild on RUSTC_BOOTSTRAP changes on nightly compiler
  • 2d32366 Update crate name used for build script probe
  • d10baed Move ExitStatus::success check into compile_probe()
  • 290c450 Merge pull request #336 from dtolnay/optionifletelse
  • 6b231dd Remove option_if_let_else clippy suppression from build script
  • eb66ff5 Merge pull request #335 from dtolnay/cargoenvvar
  • b1590b1 Require cargo promised environment variables to be present
  • 15646f4 Merge pull request #334 from dtolnay/probe
  • Additional commits viewable in compare view

Updates tempfile from 3.8.0 to 3.9.0

Changelog

Sourced from tempfile's changelog.

3.9.0

  • Updates windows-sys to 0.52
  • Updates minimum rustix version to 0.38.25

3.8.1

  • Update rustix to fix a potential panic on persist_noclobber on android.
  • Update redox_syscall to 0.4 (on redox).
  • Fix some docs typos.
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebas...

Description has been truncated

Bumps the production-dependencies group with 22 updates:

| Package | From | To |
| --- | --- | --- |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.21.4` | `0.21.5` |
| [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` |
| [prost](https://github.com/tokio-rs/prost) | `0.12.0` | `0.12.3` |
| [prost-types](https://github.com/tokio-rs/prost) | `0.12.0` | `0.12.3` |
| [insta](https://github.com/mitsuhiko/insta) | `1.31.0` | `1.34.0` |
| [proptest](https://github.com/proptest-rs/proptest) | `1.2.0` | `1.4.0` |
| [prost-build](https://github.com/tokio-rs/prost) | `0.12.0` | `0.12.3` |
| [protox](https://github.com/andrewhickman/protox) | `0.5.0` | `0.5.1` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.106` | `1.0.109` |
| [serde_yaml](https://github.com/dtolnay/serde-yaml) | `0.9.25` | `0.9.29` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.66` | `1.0.73` |
| [quote](https://github.com/dtolnay/quote) | `1.0.33` | `1.0.34` |
| [syn](https://github.com/dtolnay/syn) | `2.0.32` | `2.0.44` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.84` | `1.0.86` |
| [serde](https://github.com/serde-rs/serde) | `1.0.190` | `1.0.193` |
| [criterion](https://github.com/bheisler/criterion.rs) | `0.4.0` | `0.5.1` |
| [rayon](https://github.com/rayon-rs/rayon) | `1.7.0` | `1.8.0` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.27` | `1.0.28` |
| [ureq](https://github.com/algesten/ureq) | `2.7.1` | `2.9.1` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.9.0` |


Updates `base64` from 0.21.4 to 0.21.5
- [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md)
- [Commits](marshallpierce/rust-base64@v0.21.4...v0.21.5)

Updates `once_cell` from 1.18.0 to 1.19.0
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.18.0...v1.19.0)

Updates `prost` from 0.12.0 to 0.12.3
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.0...v0.12.3)

Updates `prost-types` from 0.12.0 to 0.12.3
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.0...v0.12.3)

Updates `insta` from 1.31.0 to 1.34.0
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.31.0...1.34.0)

Updates `proptest` from 1.2.0 to 1.4.0
- [Release notes](https://github.com/proptest-rs/proptest/releases)
- [Changelog](https://github.com/proptest-rs/proptest/blob/master/CHANGELOG.md)
- [Commits](proptest-rs/proptest@v1.2.0...v1.4.0)

Updates `prost-build` from 0.12.0 to 0.12.3
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.0...v0.12.3)

Updates `protox` from 0.5.0 to 0.5.1
- [Changelog](https://github.com/andrewhickman/protox/blob/main/CHANGELOG.md)
- [Commits](https://github.com/andrewhickman/protox/commits)

Updates `serde_json` from 1.0.106 to 1.0.109
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.106...v1.0.109)

Updates `serde_yaml` from 0.9.25 to 0.9.29
- [Release notes](https://github.com/dtolnay/serde-yaml/releases)
- [Commits](dtolnay/serde-yaml@0.9.25...0.9.29)

Updates `proc-macro2` from 1.0.66 to 1.0.73
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.66...1.0.73)

Updates `quote` from 1.0.33 to 1.0.34
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.33...1.0.34)

Updates `syn` from 2.0.32 to 2.0.44
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.32...2.0.44)

Updates `trybuild` from 1.0.84 to 1.0.86
- [Release notes](https://github.com/dtolnay/trybuild/releases)
- [Commits](dtolnay/trybuild@1.0.84...1.0.86)

Updates `serde` from 1.0.190 to 1.0.193
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.190...v1.0.193)

Updates `criterion` from 0.4.0 to 0.5.1
- [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md)
- [Commits](bheisler/criterion.rs@0.4.0...0.5.1)

Updates `rayon` from 1.7.0 to 1.8.0
- [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md)
- [Commits](rayon-rs/rayon@rayon-core-v1.7.0...rayon-core-v1.8.0)

Updates `env_logger` from 0.10.0 to 0.10.1
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.10.0...v0.10.1)

Updates `flate2` from 1.0.27 to 1.0.28
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Commits](rust-lang/flate2-rs@1.0.27...1.0.28)

Updates `ureq` from 2.7.1 to 2.9.1
- [Changelog](https://github.com/algesten/ureq/blob/main/CHANGELOG.md)
- [Commits](algesten/ureq@2.7.1...2.9.1)

Updates `anyhow` from 1.0.75 to 1.0.78
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.75...1.0.78)

Updates `tempfile` from 3.8.0 to 3.9.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.8.0...v3.9.0)

---
updated-dependencies:
- dependency-name: base64
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: once_cell
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: prost
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: prost-types
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: insta
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: proptest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: prost-build
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: protox
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: serde_yaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: quote
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: trybuild
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: criterion
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: rayon
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: flate2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: ureq
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 1, 2024
Copy link

codecov bot commented Jan 1, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (09577ae) 76.29% compared to head (686b029) 76.37%.

Additional details and impacted files
@@            Coverage Diff             @@
##             main      #84      +/-   ##
==========================================
+ Coverage   76.29%   76.37%   +0.08%     
==========================================
  Files          31       31              
  Lines        5454     5452       -2     
==========================================
+ Hits         4161     4164       +3     
+ Misses       1293     1288       -5     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 8, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 8, 2024
@dependabot dependabot bot deleted the dependabot/cargo/production-dependencies-efcb05c616 branch January 8, 2024 15:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants