Update all dependencies #6

Merged
kjuulh merged 4 commits from renovate/all into main 2022-10-27 21:54:30 +02:00
Owner

This PR contains the following updates:

Package Type Update Change
bincode dependencies patch 2.0.0-rc.1 -> 2.0.0-rc.2
serde (source) dependencies patch 1.0.136 -> 1.0.147
sscanf dependencies minor 0.2.1 -> 0.3.1

Release Notes

bincode-org/bincode

v2.0.0-rc.2

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/bincode-org/bincode/compare/v2.0.0-rc.1...v2.0.0-rc.2

serde-rs/serde

v1.0.147

Compare Source

  • Add serde::de::value::EnumAccessDeserializer which transforms an EnumAccess into a Deserializer (#​2305)

v1.0.146

Compare Source

v1.0.145

Compare Source

v1.0.144

Compare Source

  • Change atomic ordering used by Serialize impl of atomic types to match ordering used by Debug impl of those same types (#​2263, thanks @​taiki-e)

v1.0.143

Compare Source

  • Invert build.rs cfgs in serde_test to produce the most modern configuration in the default case (#​2253, thanks @​taiki-e)

v1.0.142

Compare Source

  • Add keywords to crates.io metadata

v1.0.141

Compare Source

  • Add no-std category to crates.io metadata

v1.0.140

Compare Source

  • Invert serde_derive cfgs to convenience non-Cargo builds on a modern toolchain (#​2251, thanks @​taiki-e)

v1.0.139

Compare Source

  • Add new constructor function for all IntoDeserializer impls (#​2246)

v1.0.138

Compare Source

  • Documentation improvements

v1.0.137

Compare Source

  • Update documentation links to some data formats whose repos have moved (#​2201, thanks @​atouchet)
  • Fix declared rust-version of serde and serde_test (#​2168)
mich101mich/sscanf

v0.3.1

Compare Source

v0.3.0

Compare Source

Improved the performance by no longer relying on one HashMap<String,...> lookup per returned type, but using the Regex capture index instead. This requires consistent indexing, which results in a

Minor breaking change

for anyone using a custom RegexRepresentation implementation or the {:/regex/} option syntax, because those can no longer contain ( ) without un-regex-grouping them by writing (?: ) instead.

v0.2.2

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled due to failing status checks.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [bincode](https://github.com/bincode-org/bincode) | dependencies | patch | `2.0.0-rc.1` -> `2.0.0-rc.2` | | [serde](https://serde.rs) ([source](https://github.com/serde-rs/serde)) | dependencies | patch | `1.0.136` -> `1.0.147` | | [sscanf](https://github.com/mich101mich/sscanf) | dependencies | minor | `0.2.1` -> `0.3.1` | --- ### Release Notes <details> <summary>bincode-org/bincode</summary> ### [`v2.0.0-rc.2`](https://github.com/bincode-org/bincode/releases/tag/v2.0.0-rc.2) [Compare Source](https://github.com/bincode-org/bincode/compare/v2.0.0-rc.1...v2.0.0-rc.2) #### What's Changed - Add zoxide under Bincode in the Wild by [@&#8203;ajeetdsouza](https://github.com/ajeetdsouza) in https://github.com/bincode-org/bincode/pull/525 - Made the Cow Encode constraints more permissive by [@&#8203;VictorKoenders](https://github.com/VictorKoenders) in https://github.com/bincode-org/bincode/pull/524 - Added `additional` to the `UnexpectedEnd` decode error by [@&#8203;VictorKoenders](https://github.com/VictorKoenders) in https://github.com/bincode-org/bincode/pull/522 - Allow encoding/decoding of HashMap and HashSet with custom hash algorithms by [@&#8203;bronsonp](https://github.com/bronsonp) in https://github.com/bincode-org/bincode/pull/529 - Added `std::error::Error::source` by [@&#8203;VictorKoenders](https://github.com/VictorKoenders) in https://github.com/bincode-org/bincode/pull/530 - Added cross platform tests workflow by [@&#8203;VictorKoenders](https://github.com/VictorKoenders) in https://github.com/bincode-org/bincode/pull/534 - Fix riscv32 atomics and fix tests on 32-bit platforms by [@&#8203;xobs](https://github.com/xobs) in https://github.com/bincode-org/bincode/pull/533 - Fix cross platform tests by [@&#8203;VictorKoenders](https://github.com/VictorKoenders) in https://github.com/bincode-org/bincode/pull/540 - Switched to weak dependencies by [@&#8203;VictorKoenders](https://github.com/VictorKoenders) in https://github.com/bincode-org/bincode/pull/538 - Fix tuple struct encoding in serde by [@&#8203;ZoeyR](https://github.com/ZoeyR) in https://github.com/bincode-org/bincode/pull/549 - Rewrite: seperated Decode and BorrowDecode by [@&#8203;VictorKoenders](https://github.com/VictorKoenders) in https://github.com/bincode-org/bincode/pull/526 - Add impl Encode for \[T], where T: Encode by [@&#8203;cronokirby](https://github.com/cronokirby) in https://github.com/bincode-org/bincode/pull/542 - Add impls for Rc<\[T]> and Arc<\[T]> by [@&#8203;maciejhirsz](https://github.com/maciejhirsz) in https://github.com/bincode-org/bincode/pull/552 - Shrink `DecodeError` from 48 to 32 bytes on 64-bit arch by [@&#8203;maciejhirsz](https://github.com/maciejhirsz) in https://github.com/bincode-org/bincode/pull/553 - Added windows and macos runner by [@&#8203;VictorKoenders](https://github.com/VictorKoenders) in https://github.com/bincode-org/bincode/pull/554 - Implement `Decode` for `Box<str>` by [@&#8203;SabrinaJewson](https://github.com/SabrinaJewson) in https://github.com/bincode-org/bincode/pull/562 - Fixed clippy warning and updated DecodeError by [@&#8203;VictorKoenders](https://github.com/VictorKoenders) in https://github.com/bincode-org/bincode/pull/574 - Updated test dependencies: uuid and glam by [@&#8203;VictorKoenders](https://github.com/VictorKoenders) in https://github.com/bincode-org/bincode/pull/576 - Made `peek_read` take `&mut self` by [@&#8203;VictorKoenders](https://github.com/VictorKoenders) in https://github.com/bincode-org/bincode/pull/572 - Prefixed the E and D generic argument in bincode-derive by [@&#8203;VictorKoenders](https://github.com/VictorKoenders) in https://github.com/bincode-org/bincode/pull/573 - Implement Default for Configuration by [@&#8203;VictorKoenders](https://github.com/VictorKoenders) in https://github.com/bincode-org/bincode/pull/575 - Document what the usizes are for ([#&#8203;546](https://github.com/bincode-org/bincode/issues/546)) by [@&#8203;gimbles](https://github.com/gimbles) in https://github.com/bincode-org/bincode/pull/577 - Clarify config::legacy() doc to match config::standard() by [@&#8203;trevyn](https://github.com/trevyn) in https://github.com/bincode-org/bincode/pull/580 - Implement Encode for tuples with up-to 16 elements. by [@&#8203;gz](https://github.com/gz) in https://github.com/bincode-org/bincode/pull/583 - Document configuration generics by [@&#8203;trevyn](https://github.com/trevyn) in https://github.com/bincode-org/bincode/pull/581 - Extended BorrowDecode for HashMap to support custom hashers by [@&#8203;Speedy37](https://github.com/Speedy37) in https://github.com/bincode-org/bincode/pull/585 - Allow decoding with custom `DeserializeSeed` by [@&#8203;MrGVSV](https://github.com/MrGVSV) in https://github.com/bincode-org/bincode/pull/586 - Added `[serde(tag)]` to the list of tags that are known to give issues by [@&#8203;VictorKoenders](https://github.com/VictorKoenders) in https://github.com/bincode-org/bincode/pull/584 - Release 2.0.0-rc.2 by [@&#8203;VictorKoenders](https://github.com/VictorKoenders) in https://github.com/bincode-org/bincode/pull/588 #### New Contributors - [@&#8203;ajeetdsouza](https://github.com/ajeetdsouza) made their first contribution in https://github.com/bincode-org/bincode/pull/525 - [@&#8203;bronsonp](https://github.com/bronsonp) made their first contribution in https://github.com/bincode-org/bincode/pull/529 - [@&#8203;xobs](https://github.com/xobs) made their first contribution in https://github.com/bincode-org/bincode/pull/533 - [@&#8203;cronokirby](https://github.com/cronokirby) made their first contribution in https://github.com/bincode-org/bincode/pull/542 - [@&#8203;maciejhirsz](https://github.com/maciejhirsz) made their first contribution in https://github.com/bincode-org/bincode/pull/552 - [@&#8203;SabrinaJewson](https://github.com/SabrinaJewson) made their first contribution in https://github.com/bincode-org/bincode/pull/562 - [@&#8203;gimbles](https://github.com/gimbles) made their first contribution in https://github.com/bincode-org/bincode/pull/577 - [@&#8203;trevyn](https://github.com/trevyn) made their first contribution in https://github.com/bincode-org/bincode/pull/580 - [@&#8203;gz](https://github.com/gz) made their first contribution in https://github.com/bincode-org/bincode/pull/583 - [@&#8203;Speedy37](https://github.com/Speedy37) made their first contribution in https://github.com/bincode-org/bincode/pull/585 - [@&#8203;MrGVSV](https://github.com/MrGVSV) made their first contribution in https://github.com/bincode-org/bincode/pull/586 **Full Changelog**: https://github.com/bincode-org/bincode/compare/v2.0.0-rc.1...v2.0.0-rc.2 </details> <details> <summary>serde-rs/serde</summary> ### [`v1.0.147`](https://github.com/serde-rs/serde/releases/tag/v1.0.147) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.146...v1.0.147) - Add `serde::de::value::EnumAccessDeserializer` which transforms an `EnumAccess` into a `Deserializer` ([#&#8203;2305](https://github.com/serde-rs/serde/issues/2305)) ### [`v1.0.146`](https://github.com/serde-rs/serde/releases/tag/v1.0.146) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.145...v1.0.146) - Allow internally tagged newtype variant to contain unit ([#&#8203;2303](https://github.com/serde-rs/serde/issues/2303), thanks [@&#8203;tage64](https://github.com/tage64)) ### [`v1.0.145`](https://github.com/serde-rs/serde/releases/tag/v1.0.145) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.144...v1.0.145) - Allow RefCell\<T>, Mutex\<T>, and RwLock\<T> to be serialized regardless of whether T is `Sized` ([#&#8203;2282](https://github.com/serde-rs/serde/issues/2282), thanks [@&#8203;ChayimFriedman2](https://github.com/ChayimFriedman2)) ### [`v1.0.144`](https://github.com/serde-rs/serde/releases/tag/v1.0.144) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.143...v1.0.144) - Change atomic ordering used by Serialize impl of atomic types to match ordering used by Debug impl of those same types ([#&#8203;2263](https://github.com/serde-rs/serde/issues/2263), thanks [@&#8203;taiki-e](https://github.com/taiki-e)) ### [`v1.0.143`](https://github.com/serde-rs/serde/releases/tag/v1.0.143) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.142...v1.0.143) - Invert build.rs cfgs in serde_test to produce the most modern configuration in the default case ([#&#8203;2253](https://github.com/serde-rs/serde/issues/2253), thanks [@&#8203;taiki-e](https://github.com/taiki-e)) ### [`v1.0.142`](https://github.com/serde-rs/serde/releases/tag/v1.0.142) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.141...v1.0.142) - Add keywords to crates.io metadata ### [`v1.0.141`](https://github.com/serde-rs/serde/releases/tag/v1.0.141) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.140...v1.0.141) - Add `no-std` category to crates.io metadata ### [`v1.0.140`](https://github.com/serde-rs/serde/releases/tag/v1.0.140) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.139...v1.0.140) - Invert serde_derive cfgs to convenience non-Cargo builds on a modern toolchain ([#&#8203;2251](https://github.com/serde-rs/serde/issues/2251), thanks [@&#8203;taiki-e](https://github.com/taiki-e)) ### [`v1.0.139`](https://github.com/serde-rs/serde/releases/tag/v1.0.139) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.138...v1.0.139) - Add `new` constructor function for all `IntoDeserializer` impls ([#&#8203;2246](https://github.com/serde-rs/serde/issues/2246)) ### [`v1.0.138`](https://github.com/serde-rs/serde/releases/tag/v1.0.138) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.137...v1.0.138) - Documentation improvements ### [`v1.0.137`](https://github.com/serde-rs/serde/releases/tag/v1.0.137) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.136...v1.0.137) - Update documentation links to some data formats whose repos have moved ([#&#8203;2201](https://github.com/serde-rs/serde/issues/2201), thanks [@&#8203;atouchet](https://github.com/atouchet)) - Fix declared `rust-version` of serde and serde_test ([#&#8203;2168](https://github.com/serde-rs/serde/issues/2168)) </details> <details> <summary>mich101mich/sscanf</summary> ### [`v0.3.1`](https://github.com/mich101mich/sscanf/compare/0.3.0...0.3.1) [Compare Source](https://github.com/mich101mich/sscanf/compare/0.3.0...0.3.1) ### [`v0.3.0`](https://github.com/mich101mich/sscanf/releases/tag/0.3.0) [Compare Source](https://github.com/mich101mich/sscanf/compare/0.2.2...0.3.0) Improved the performance by no longer relying on one `HashMap<String,...>` lookup per returned type, but using the Regex capture index instead. This requires consistent indexing, which results in a **Minor breaking change** for anyone using a custom `RegexRepresentation` implementation or the `{:/regex/}` option syntax, because those can no longer contain `( )` without un-regex-grouping them by writing `(?: )` instead. ### [`v0.2.2`](https://github.com/mich101mich/sscanf/compare/0.2.1...0.2.2) [Compare Source](https://github.com/mich101mich/sscanf/compare/0.2.1...0.2.2) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled due to failing status checks. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yNDEuMTEiLCJ1cGRhdGVkSW5WZXIiOiIzMi4yNDEuMTEifQ==-->
kjuulh added 1 commit 2022-10-27 08:31:54 +02:00
Update all dependencies
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
d2db1086db
kjuulh added 1 commit 2022-10-27 21:50:17 +02:00
with updated lock
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
0a931f6fa6
kjuulh added 1 commit 2022-10-27 21:52:13 +02:00
with harbor image
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build encountered an error
c860ad4233
kjuulh added 1 commit 2022-10-27 21:53:08 +02:00
trying again
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is passing
f632777617
kjuulh merged commit 54ec6d82cb into main 2022-10-27 21:54:30 +02:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kjuulh/sqlite-clone#6
No description provided.