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

fix(deps): update all non-major rust dependencies #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Mar 6, 2023

This PR contains the following updates:

Package Type Update Change
anyhow dependencies patch 1.0.75 -> 1.0.93
async-recursion dependencies minor 1.0.5 -> 1.1.1
futures (source) dependencies patch 0.3.29 -> 0.3.31
itertools dependencies minor 0.10.5 -> 0.13.0
log dependencies patch 0.4.17 -> 0.4.22
nom dependencies patch 7.1.1 -> 7.1.3
paste dependencies patch 1.0.14 -> 1.0.15
safe-transmute dependencies patch 0.11.2 -> 0.11.3
semver dependencies patch 1.0.16 -> 1.0.23
serde (source) dependencies patch 1.0.152 -> 1.0.215
serde_json dependencies patch 1.0.64 -> 1.0.133
thiserror dependencies patch 1.0.38 -> 1.0.69

Release Notes

dtolnay/anyhow (anyhow)

v1.0.93

Compare Source

  • Update dev-dependencies to thiserror v2

v1.0.92

Compare Source

  • Support Rust 1.82's &raw const and &raw mut syntax inside ensure! (#​390)

v1.0.91

Compare Source

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#​388)

v1.0.90

Compare Source

  • Documentation improvements

v1.0.89

Compare Source

  • Make anyhow::Error's UnwindSafe and RefUnwindSafe impl consistently available between versions of Rust newer and older than 1.72 (#​386)

v1.0.88

Compare Source

  • Documentation improvements

v1.0.87

Compare Source

  • Support more APIs, including Error::new and Error::chain, in no-std mode on Rust 1.81+ (#​383)

v1.0.86

Compare Source

  • Fix parse error in ensure! with non-literal after minus sign (#​373)

v1.0.85

Compare Source

  • Improve ensure! macro's rules to unblock some rustc pretty-printer improvements (#​368, #​371)

v1.0.84

Compare Source

  • Disallow calling ensure! through a Not impl for a type that is not bool (#​367)

v1.0.83

Compare Source

  • Integrate compile-time checking of cfgs (#​363)

v1.0.82

Compare Source

  • Documentation improvements

v1.0.81

Compare Source

  • Make backtrace support available when using -Dwarnings (#​354)

v1.0.80

Compare Source

  • Fix unused_imports warnings when compiled by rustc 1.78

v1.0.79

Compare Source

  • Work around improperly cached build script result by sccache (#​340)

v1.0.78

Compare Source

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

v1.0.77

Compare Source

v1.0.76

Compare Source

  • Opt in to unsafe_op_in_unsafe_fn lint (#​329)
dcchut/async-recursion (async-recursion)

v1.1.1

Compare Source

What's Changed

Full Changelog: dcchut/async-recursion@v1.1.0...v1.1.1

v1.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: dcchut/async-recursion@v1.0.5...v1.1.0

rust-lang/futures-rs (futures)

v0.3.31

Compare Source

  • Fix use after free of task in FuturesUnordered when dropped future panics (#​2886)
  • Fix soundness bug in task::waker_ref (#​2830)
    This is a breaking change but allowed because it is soundness bug fix.
  • Fix bugs in AsyncBufRead::read_line and AsyncBufReadExt::lines (#​2884)
  • Fix parsing issue in select!/select_biased! (#​2832)
    This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
  • Work around issue due to upstream Waker::will_wake change (#​2865)
  • Add stream::Iter::{get_ref,get_mut,into_inner} (#​2875)
  • Add future::AlwaysReady (#​2825)
  • Relax trait bound on non-constructor methods of io::{BufReader,BufWriter} (#​2848)

v0.3.30

Compare Source

Note: This release of futures-util has been yanked due to a bug fixed in 0.3.31 and a compile failure with futures-task 0.3.31 and later.

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#​2797)
  • Fix panic in FuturesUnordered::clear (#​2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#​2801, #​2812)
  • Improve support for targets without atomic CAS (#​2811)
  • Remove build scripts (#​2811)
rust-itertools/itertools (itertools)

v0.13.0

Compare Source

Breaking
  • Removed implementation of DoubleEndedIterator for ConsTuples (#​853)
  • Made MultiProduct fused and fixed on an empty iterator (#​835, #​834)
  • Changed iproduct! to return tuples for maxi one iterator too (#​870)
  • Changed PutBack::put_back to return the old value (#​880)
  • Removed deprecated repeat_call, Itertools::{foreach, step, map_results, fold_results} (#​878)
  • Removed TakeWhileInclusive::new (#​912)
Added
  • Added Itertools::{smallest_by, smallest_by_key, largest, largest_by, largest_by_key} (#​654, #​885)
  • Added Itertools::tail (#​899)
  • Implemented DoubleEndedIterator for ProcessResults (#​910)
  • Implemented Debug for FormatWith (#​931)
  • Added Itertools::get (#​891)
Changed
  • Deprecated Itertools::group_by (renamed chunk_by) (#​866, #​879)
  • Deprecated unfold (use std::iter::from_fn instead) (#​871)
  • Optimized GroupingMapBy (#​873, #​876)
  • Relaxed Fn bounds to FnMut in diff_with, Itertools::into_group_map_by (#​886)
  • Relaxed Debug/Clone bounds for MapInto (#​889)
  • Documented the use_alloc feature (#​887)
  • Optimized Itertools::set_from (#​888)
  • Removed badges in README.md (#​890)
  • Added "no-std" categories in Cargo.toml (#​894)
  • Fixed Itertools::k_smallest on short unfused iterators (#​900)
  • Deprecated Itertools::tree_fold1 (renamed tree_reduce) (#​895)
  • Deprecated GroupingMap::fold_first (renamed reduce) (#​902)
  • Fixed Itertools::k_smallest(0) to consume the iterator, optimized Itertools::k_smallest(1) (#​909)
  • Specialized Combinations::nth (#​914)
  • Specialized MergeBy::fold (#​920)
  • Specialized CombinationsWithReplacement::nth (#​923)
  • Specialized FlattenOk::{fold, rfold} (#​927)
  • Specialized Powerset::nth (#​924)
  • Documentation fixes (#​882, #​936)
  • Fixed assert_equal for iterators longer than i32::MAX (#​932)
  • Updated the must_use message of non-lazy KMergeBy and TupleCombinations (#​939)
Notable Internal Changes
  • Tested iterator laziness (#​792)
  • Created CONTRIBUTING.md (#​767)

v0.12.1

Compare Source

Added
  • Documented iteration order guarantee for Itertools::[tuple_]combinations (#​822)
  • Documented possible panic in iterate (#​842)
  • Implemented Clone and Debug for Diff (#​845)
  • Implemented Debug for WithPosition (#​859)
  • Implemented Eq for MinMaxResult (#​838)
  • Implemented From<EitherOrBoth<A, B>> for Option<Either<A, B>> (#​843)
  • Implemented PeekingNext for RepeatN (#​855)
Changed
  • Made CoalesceBy lazy (#​801)
  • Optimized Filter[Map]Ok::next, Itertools::partition, Unique[By]::next[_back] (#​818)
  • Optimized Itertools::find_position (#​837)
  • Optimized Positions::next[_back] (#​816)
  • Optimized ZipLongest::fold (#​854)
  • Relaxed Debug bounds for GroupingMapBy (#​860)
  • Specialized ExactlyOneError::fold (#​826)
  • Specialized Interleave[Shortest]::fold (#​849)
  • Specialized MultiPeek::fold (#​820)
  • Specialized PadUsing::[r]fold (#​825)
  • Specialized PeekNth::fold (#​824)
  • Specialized Positions::[r]fold (#​813)
  • Specialized PutBackN::fold (#​823)
  • Specialized RepeatN::[r]fold (#​821)
  • Specialized TakeWhileInclusive::fold (#​851)
  • Specialized ZipLongest::rfold (#​848)
Notable Internal Changes

v0.12.0

Compare Source

Breaking
  • Made take_while_inclusive consume iterator by value (#​709)
  • Added Clone bound to Unique (#​777)
Added
  • Added Itertools::try_len (#​723)
  • Added free function sort_unstable (#​796)
  • Added GroupMap::fold_with (#​778, #​785)
  • Added PeekNth::{peek_mut, peek_nth_mut} (#​716)
  • Added PeekNth::{next_if, next_if_eq} (#​734)
  • Added conversion into (Option<A>,Option<B>) to EitherOrBoth (#​713)
  • Added conversion from Either<A, B> to EitherOrBoth<A, B> (#​715)
  • Implemented ExactSizeIterator for Tuples (#​761)
  • Implemented ExactSizeIterator for (Circular)TupleWindows (#​752)
  • Made EitherOrBoth<T> a shorthand for EitherOrBoth<T, T> (#​719)
Changed
  • Added missing #[must_use] annotations on iterator adaptors (#​794)
  • Made Combinations lazy (#​795)
  • Made Intersperse(With) lazy (#​797)
  • Made Permutations lazy (#​793)
  • Made Product lazy (#​800)
  • Made TupleWindows lazy (#​602)
  • Specialized Combinations::{count, size_hint} (#​729)
  • Specialized CombinationsWithReplacement::{count, size_hint} (#​737)
  • Specialized Powerset::fold (#​765)
  • Specialized Powerset::count (#​735)
  • Specialized TupleCombinations::{count, size_hint} (#​763)
  • Specialized TupleCombinations::fold (#​775)
  • Specialized WhileSome::fold (#​780)
  • Specialized WithPosition::fold (#​772)
  • Specialized ZipLongest::fold (#​774)
  • Changed {min, max}_set* operations require alloc feature, instead of std (#​760)
  • Improved documentation of tree_fold1 (#​787)
  • Improved documentation of permutations (#​724)
  • Fixed typo in documentation of multiunzip (#​770)
Notable Internal Changes

v0.11.0

Compare Source

Breaking
  • Make Itertools::merge_join_by also accept functions returning bool (#​704)
  • Implement PeekingNext transitively over mutable references (#​643)
  • Change with_position to yield (Position, Item) instead of Position<Item> (#​699)
Added
  • Add Itertools::take_while_inclusive (#​616)
  • Implement PeekingNext for PeekingTakeWhile (#​644)
  • Add EitherOrBoth::{just_left, just_right, into_left, into_right, as_deref, as_deref_mut, left_or_insert, right_or_insert, left_or_insert_with, right_or_insert_with, insert_left, insert_right, insert_both} (#​629)
  • Implement Clone for CircularTupleWindows (#​686)
  • Implement Clone for Chunks (#​683)
  • Add Itertools::process_results (#​680)
Changed
  • Use Cell instead of RefCell in Format and FormatWith (#​608)
  • CI tweaks (#​674, #​675)
  • Document and test the difference between stable and unstable sorts (#​653)
  • Fix documentation error on Itertools::max_set_by_key (#​692)
  • Move MSRV metadata to Cargo.toml (#​672)
  • Implement equal with Iterator::eq (#​591)
rust-lang/log (log)

v0.4.22

Compare Source

v0.4.21

Compare Source

v0.4.20

Compare Source

v0.4.19

Compare Source

v0.4.18

Compare Source

rust-bakery/nom (nom)

v7.1.3

Compare Source

v7.1.2

Compare Source

Thanks
Changed
  • documentation fixes
  • tests fixes
  • limit the initial capacity of the result vector of many_m_n to 64kiB
  • bits parser now accept Parser implementors instead of only functions
Added
  • implement Tuple parsing for the unit type as a special case
  • implement ErrorConvert on the unit type to make it usable as error type for bits parsers
  • bool parser for bits input
dtolnay/paste (paste)

v1.0.15

Compare Source

  • Resolve unexpected_cfgs warning (#​102)
nabijaczleweli/safe-transmute-rs (safe-transmute)

v0.11.3

Compare Source

dtolnay/semver (semver)

v1.0.23

Compare Source

  • Resolve unexpected_cfgs warning (#​318)

v1.0.22

Compare Source

  • Fix unused_imports warnings when compiled by rustc 1.78

v1.0.21

Compare Source

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache

v1.0.20

Compare Source

  • Add a method for comparing versions by precedence (#​305)

v1.0.19

Compare Source

v1.0.18

Compare Source

  • Documentation improvements

v1.0.17

Compare Source

  • Improve error message when Version is being parsed from an empty string (#​296)
serde-rs/serde (serde)

v1.0.215

Compare Source

v1.0.214

Compare Source

  • Implement IntoDeserializer for all Deserializers in serde::de::value module (#​2568, thanks @​Mingun)

v1.0.213

Compare Source

  • Fix support for macro-generated with attributes inside a newtype struct (#​2847)

v1.0.212

Compare Source

  • Fix hygiene of macro-generated local variable accesses in serde(with) wrappers (#​2845)

v1.0.211

Compare Source

  • Improve error reporting about mismatched signature in with and default attributes (#​2558, thanks @​Mingun)
  • Show variant aliases in error message when variant deserialization fails (#​2566, thanks @​Mingun)
  • Improve binary size of untagged enum and internally tagged enum deserialization by about 12% (#​2821)

v1.0.210

Compare Source

  • Support serializing and deserializing IpAddr and SocketAddr in no-std mode on Rust 1.77+ (#​2816, thanks @​MathiasKoch)
  • Make serde::ser::StdError and serde::de::StdError equivalent to core::error::Error on Rust 1.81+ (#​2818)

v1.0.209

Compare Source

  • Fix deserialization of empty structs and empty tuples inside of untagged enums (#​2805, thanks @​Mingun)

v1.0.208

Compare Source

  • Support serializing and deserializing unit structs in a flatten field (#​2802, thanks @​jonhoo)

v1.0.207

Compare Source

  • Improve interactions between flatten attribute and skip_serializing/skip_deserializing (#​2795, thanks @​Mingun)

v1.0.206

Compare Source

v1.0.205

Compare Source

  • Use serialize_entry instead of serialize_key + serialize_value when serialize flattened newtype enum variants (#​2785, thanks @​Mingun)
  • Avoid triggering a collection_is_never_read lint in the deserialization of enums containing flattened fields (#​2791)

v1.0.204

Compare Source

  • Apply #[diagnostic::on_unimplemented] attribute on Rust 1.78+ to suggest adding serde derive or enabling a "serde" feature flag in dependencies (#​2767, thanks @​weiznich)

v1.0.203

Compare Source

v1.0.202

Compare Source

  • Provide public access to RenameAllRules in serde_derive_internals (#​2743)

v1.0.201

Compare Source

  • Resolve unexpected_cfgs warning (#​2737)

v1.0.200

Compare Source

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#​2733, thanks @​jamessan)

v1.0.199

Compare Source

  • Fix ambiguous associated item when forward_to_deserialize_any! is used on an enum with Error variant (#​2732, thanks @​aatifsyed)

v1.0.198

Compare Source

v1.0.197

Compare Source

  • Fix unused_imports warnings when compiled by rustc 1.78
  • Optimize code size of some Display impls (#​2697, thanks @​nyurik)

v1.0.196

Compare Source

  • Improve formatting of "invalid type" error messages involving floats (#​2682)

v1.0.195

Compare Source

  • Prevent remote definitions of tuple struct or tuple variant from triggering dead_code warning (#​2671)

v1.0.194

Compare Source

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache

v1.0.193

Compare Source

v1.0.192

Compare Source

v1.0.191

Compare Source

  • Documentation improvements

v1.0.190

Compare Source

  • Preserve NaN sign when deserializing f32 from f64 or vice versa (#​2637)

v1.0.189

Compare Source

  • Fix "cannot infer type" error when internally tagged enum contains untagged variant (#​2613, thanks @​ahl)

v1.0.188

Compare Source

  • Fix "failed to parse manifest" error when building serde using a Cargo version between 1.45 and 1.50 (#​2603)

v1.0.187

Compare Source

  • Remove support for Emscripten targets on rustc older than 1.40 (#​2600)

v1.0.186

Compare Source

  • Disallow incompatible versions of serde_derive and serde in the dependency graph (#​2588, thanks @​soqb)

v1.0.185

Compare Source

  • Fix error "cannot move out of *self which is behind a shared reference" deriving Serialize on a non_exhaustive enum (#​2591)

v1.0.184

Compare Source

  • Restore from-source serde_derive build on all platforms — eventually we'd like to use a first-class precompiled macro if such a thing becomes supported by cargo / crates.io

v1.0.183

Compare Source

  • Support deserializing Box<OsStr> with an equivalent representation as OsString (#​2556, thanks @​DBLouis)

v1.0.182

Compare Source

v1.0.181

Compare Source

  • Make serde(alias) work in combination with flatten when using in-place deserialization (#​2443, thanks @​Mingun)
  • Improve the representation of adjacently tagged enums in formats where enum tags are serialized by index, as opposed to by string name (#​2505, #​2496, thanks @​Baptistemontan)

v1.0.180

Compare Source

  • Update to 2018 edition

v1.0.179

Compare Source

  • Support serialization of tuple variants inside a flattened field (#​2448, thanks @​Mingun)

v1.0.178

Compare Source

  • Fix build error when using serde with "std" feature turned off and "unstable" feature turned on (#​2541)

v1.0.177

Compare Source

  • Add serde(rename_all_fields = "...") attribute to apply a rename_all on every struct variant of an enum (#​1695, thanks @​jplatte)
  • Improve diagnostics for attribute parse errors (#​2536, thanks @​jplatte)

v1.0.176

Compare Source

  • Allow tag field of an internally tagged enum to have same name as a field inside a skipped struct variant (#​2266, thanks @​flisky)

v1.0.175

Compare Source

v1.0.174

Compare Source

  • Documentation improvements

v1.0.173

Compare Source

  • Fix missing trait implementations when using serde derive macro on a macro-generated data structure, such as via the bitflags crate (#​2516)

v1.0.172

Compare Source

  • Experiment with precompiling the serde_derive macros to reduce build time (#​2514)

v1.0.171

Compare Source

v1.0.170

Compare Source

  • Produce error message on suffixed string literals inside serde attributes (#​2242)
  • Support single identifier as unbraced default value for const generic parameter (#​2449)

v1.0.169

Compare Source

  • Add Deserializer::deserialize_identifier support for adjacently tagged enums (#​2475, thanks @​Baptistemontan)
  • Fix unused_braces lint in generated Deserialize impl that uses braced const generic expressions (#​2414)

v1.0.168

Compare Source

  • Allow serde::de::IgnoredAny to be the type for a serde(flatten) field (#​2436, thanks @​Mingun)
  • Allow larger preallocated capacity for smaller elements (#​2494)

v1.0.167

Compare Source

  • Add serialize and deserialize impls for RangeFrom and RangeTo (#​2471, thanks @​tbu-)

v1.0.166

Compare Source

  • Add no-alloc category to crates.io metadata

v1.0.165

Compare Source

  • Fix incorrect count of fields passed to tuple deserialization methods when using serde(skip_deserializing) attributes (#​2466, thanks @​Mingun)
  • Fix -Zminimal-versions build

v1.0.164

Compare Source

v1.0.163

Compare Source

  • Eliminate build script from serde_derive crate to sl

Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch 5 times, most recently from 214567b to 1a7b57e Compare March 14, 2023 11:56
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch from 1a7b57e to 6e072b6 Compare April 3, 2023 15:14
@renovate renovate bot changed the title fix(deps): update all non-major rust dependencies fix(deps): update all non-major rust dependencies - autoclosed Apr 3, 2023
@renovate renovate bot closed this Apr 3, 2023
@renovate renovate bot deleted the renovate/all-non-major-rust-dependencies branch April 3, 2023 23:05
@renovate renovate bot changed the title fix(deps): update all non-major rust dependencies - autoclosed fix(deps): update all non-major rust dependencies Apr 4, 2023
@renovate renovate bot reopened this Apr 4, 2023
@renovate renovate bot restored the renovate/all-non-major-rust-dependencies branch April 4, 2023 08:19
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch from 6e072b6 to 6c33a11 Compare April 11, 2023 07:44
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch 3 times, most recently from 5a4e6c7 to 6418130 Compare May 11, 2023 04:05
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch from 6418130 to da0071e Compare May 28, 2023 05:21
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch 2 times, most recently from b063e28 to 93d6a55 Compare June 11, 2023 03:59
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch from 93d6a55 to c978e12 Compare June 22, 2023 13:38
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch 8 times, most recently from 8023891 to b2bf73e Compare July 10, 2023 01:49
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch 2 times, most recently from 0bcb7d7 to 7f01c7b Compare July 20, 2023 01:08
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch 3 times, most recently from fb8cc53 to c164303 Compare April 27, 2024 05:13
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch 3 times, most recently from e2e3c12 to 4ab1763 Compare May 5, 2024 10:09
Copy link
Author

renovate bot commented May 5, 2024

⚠ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path wasmer-it/Cargo.toml --package [email protected] --precise 1.0.201
    Updating crates.io index
error: failed to select a version for `syn`.
    ... required by package `serde_derive v1.0.201`
    ... which satisfies dependency `serde_derive = "=1.0.201"` of package `serde v1.0.201`
    ... which satisfies dependency `serde = "^1.0"` of package `wasmer-interface-types-fl v0.28.0 (/tmp/renovate/repos/github/fluencelabs/interface-types/wasmer-it)`
versions that meet the requirements `^2.0.46` are: 2.0.61, 2.0.60, 2.0.59, 2.0.58, 2.0.57, 2.0.56, 2.0.55, 2.0.54, 2.0.53, 2.0.52, 2.0.51, 2.0.50, 2.0.49, 2.0.48, 2.0.47, 2.0.46

all possible versions conflict with previously selected packages.

  previously selected package `syn v2.0.39`
    ... which satisfies dependency `syn = "^2.0"` (locked to 2.0.39) of package `async-recursion v1.0.5`
    ... which satisfies dependency `async-recursion = "^1.0.5"` (locked to 1.0.5) of package `it-lilo v0.7.0 (/tmp/renovate/repos/github/fluencelabs/interface-types/crates/it-lilo)`
    ... which satisfies path dependency `it-lilo` (locked to 0.7.0) of package `wasmer-interface-types-fl v0.28.0 (/tmp/renovate/repos/github/fluencelabs/interface-types/wasmer-it)`

failed to select a version for `syn` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/it-lilo/Cargo.toml --package [email protected] --precise 1.0.60
    Updating crates.io index
error: failed to select a version for `syn`.
    ... required by package `thiserror-impl v1.0.60`
    ... which satisfies dependency `thiserror-impl = "=1.0.60"` of package `thiserror v1.0.60`
    ... which satisfies dependency `thiserror = "^1.0.38"` of package `wasmer-interface-types-fl v0.28.0 (/tmp/renovate/repos/github/fluencelabs/interface-types/wasmer-it)`
versions that meet the requirements `^2.0.46` are: 2.0.61, 2.0.60, 2.0.59, 2.0.58, 2.0.57, 2.0.56, 2.0.55, 2.0.54, 2.0.53, 2.0.52, 2.0.51, 2.0.50, 2.0.49, 2.0.48, 2.0.47, 2.0.46

all possible versions conflict with previously selected packages.

  previously selected package `syn v2.0.39`
    ... which satisfies dependency `syn = "^2.0"` (locked to 2.0.39) of package `async-recursion v1.1.1`
    ... which satisfies dependency `async-recursion = "^1.0.5"` (locked to 1.1.1) of package `it-lilo v0.7.0 (/tmp/renovate/repos/github/fluencelabs/interface-types/crates/it-lilo)`
    ... which satisfies path dependency `it-lilo` (locked to 0.7.0) of package `wasmer-interface-types-fl v0.28.0 (/tmp/renovate/repos/github/fluencelabs/interface-types/wasmer-it)`

failed to select a version for `syn` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/it-types/Cargo.toml --package [email protected] --precise 1.0.201
    Updating crates.io index
error: failed to select a version for `syn`.
    ... required by package `serde_derive v1.0.201`
    ... which satisfies dependency `serde_derive = "=1.0.201"` of package `serde v1.0.201`
    ... which satisfies dependency `serde = "^1.0"` of package `wasmer-interface-types-fl v0.28.0 (/tmp/renovate/repos/github/fluencelabs/interface-types/wasmer-it)`
versions that meet the requirements `^2.0.46` are: 2.0.61, 2.0.60, 2.0.59, 2.0.58, 2.0.57, 2.0.56, 2.0.55, 2.0.54, 2.0.53, 2.0.52, 2.0.51, 2.0.50, 2.0.49, 2.0.48, 2.0.47, 2.0.46

all possible versions conflict with previously selected packages.

  previously selected package `syn v2.0.39`
    ... which satisfies dependency `syn = "^2.0"` (locked to 2.0.39) of package `async-recursion v1.1.1`
    ... which satisfies dependency `async-recursion = "^1.0.5"` (locked to 1.1.1) of package `it-lilo v0.7.0 (/tmp/renovate/repos/github/fluencelabs/interface-types/crates/it-lilo)`
    ... which satisfies path dependency `it-lilo` (locked to 0.7.0) of package `wasmer-interface-types-fl v0.28.0 (/tmp/renovate/repos/github/fluencelabs/interface-types/wasmer-it)`

failed to select a version for `syn` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/it-memory-traits/Cargo.toml --package [email protected] --precise 1.0.60
    Updating crates.io index
error: failed to select a version for `syn`.
    ... required by package `thiserror-impl v1.0.60`
    ... which satisfies dependency `thiserror-impl = "=1.0.60"` of package `thiserror v1.0.60`
    ... which satisfies dependency `thiserror = "^1.0.38"` of package `wasmer-interface-types-fl v0.28.0 (/tmp/renovate/repos/github/fluencelabs/interface-types/wasmer-it)`
versions that meet the requirements `^2.0.46` are: 2.0.61, 2.0.60, 2.0.59, 2.0.58, 2.0.57, 2.0.56, 2.0.55, 2.0.54, 2.0.53, 2.0.52, 2.0.51, 2.0.50, 2.0.49, 2.0.48, 2.0.47, 2.0.46

all possible versions conflict with previously selected packages.

  previously selected package `syn v2.0.39`
    ... which satisfies dependency `syn = "^2.0"` (locked to 2.0.39) of package `async-recursion v1.1.1`
    ... which satisfies dependency `async-recursion = "^1.0.5"` (locked to 1.1.1) of package `it-lilo v0.7.0 (/tmp/renovate/repos/github/fluencelabs/interface-types/crates/it-lilo)`
    ... which satisfies path dependency `it-lilo` (locked to 0.7.0) of package `wasmer-interface-types-fl v0.28.0 (/tmp/renovate/repos/github/fluencelabs/interface-types/wasmer-it)`

failed to select a version for `syn` which could resolve this conflict

@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch from 4ab1763 to e96dc19 Compare May 16, 2024 16:05
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch from e96dc19 to 88b63e4 Compare August 28, 2024 06:18
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch from 88b63e4 to 6064d50 Compare September 16, 2024 09:51
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch from 6064d50 to f3e67e4 Compare October 5, 2024 07:56
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch 8 times, most recently from 94e9192 to 22d8b7d Compare October 22, 2024 19:33
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch 6 times, most recently from b818792 to cd07e3e Compare November 4, 2024 17:28
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch 3 times, most recently from 508b0ed to be56b3e Compare November 11, 2024 22:36
@renovate renovate bot force-pushed the renovate/all-non-major-rust-dependencies branch from be56b3e to c90a8da Compare November 17, 2024 04:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants