chore(examples) Update Rust Deps to v1.0.219
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| serde (source) | dependencies | patch | 1.0.104 -> 1.0.219 |
| serde_json | dependencies | patch | 1.0.48 -> 1.0.140 |
Release Notes
serde-rs/serde (serde)
v1.0.219
- Prevent
absolute_pathsClippy restriction being triggered inside macro-generated code (#2906, thanks @davidzeng0)
v1.0.218
- Documentation improvements
v1.0.217
v1.0.216
- Mark all generated impls with #[automatically_derived] to exclude from code coverage (#2866, #2868, thanks @tdittr)
v1.0.215
- Produce warning when multiple fields or variants have the same deserialization name (#2855, #2856, #2857)
v1.0.214
- Implement IntoDeserializer for all Deserializers in serde::de::value module (#2568, thanks @Mingun)
v1.0.213
- Fix support for macro-generated
withattributes inside a newtype struct (#2847)
v1.0.212
- Fix hygiene of macro-generated local variable accesses in serde(with) wrappers (#2845)
v1.0.211
- Improve error reporting about mismatched signature in
withanddefaultattributes (#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
- Support serializing and deserializing
IpAddrandSocketAddrin no-std mode on Rust 1.77+ (#2816, thanks @MathiasKoch) - Make
serde::ser::StdErrorandserde::de::StdErrorequivalent tocore::error::Erroron Rust 1.81+ (#2818)
v1.0.209
- Fix deserialization of empty structs and empty tuples inside of untagged enums (#2805, thanks @Mingun)
v1.0.208
v1.0.207
- Improve interactions between
flattenattribute andskip_serializing/skip_deserializing(#2795, thanks @Mingun)
v1.0.206
v1.0.205
- 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
- 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
- Documentation improvements (#2747)
v1.0.202
- Provide public access to RenameAllRules in serde_derive_internals (#2743)
v1.0.201
- Resolve unexpected_cfgs warning (#2737)
v1.0.200
- Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks @jamessan)
v1.0.199
- Fix ambiguous associated item when
forward_to_deserialize_any!is used on an enum withErrorvariant (#2732, thanks @aatifsyed)
v1.0.198
- Support serializing and deserializing
Saturating<T>(#2709, thanks @jbethune)
v1.0.197
- Fix unused_imports warnings when compiled by rustc 1.78
- Optimize code size of some Display impls (#2697, thanks @nyurik)
v1.0.196
- Improve formatting of "invalid type" error messages involving floats (#2682)
v1.0.195
- Prevent remote definitions of tuple struct or tuple variant from triggering dead_code warning (#2671)
v1.0.194
- Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache
v1.0.193
- Fix field names used for the deserialization of
RangeFromandRangeTo(#2653, #2654, #2655, thanks @emilbonnek)
v1.0.192
- Allow internal tag field in untagged variant (#2646, thanks @robsdedude)
v1.0.191
- Documentation improvements
v1.0.190
- Preserve NaN sign when deserializing f32 from f64 or vice versa (#2637)
v1.0.189
- Fix "cannot infer type" error when internally tagged enum contains untagged variant (#2613, thanks @ahl)
v1.0.188
- Fix "failed to parse manifest" error when building serde using a Cargo version between 1.45 and 1.50 (#2603)
v1.0.187
- Remove support for Emscripten targets on rustc older than 1.40 (#2600)
v1.0.186
- Disallow incompatible versions of
serde_deriveandserdein the dependency graph (#2588, thanks @soqb)
v1.0.185
- Fix error "cannot move out of
*selfwhich is behind a shared reference" deriving Serialize on a non_exhaustive enum (#2591)
v1.0.184
- Restore from-source
serde_derivebuild 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
- Support deserializing
Box<OsStr>with an equivalent representation asOsString(#2556, thanks @DBLouis)
v1.0.182
- Render field aliases in sorted order in error messages (#2458, thanks @Mingun)
- Support
serde(default)on tuple structs (#2553, thanks @Mingun)
v1.0.181
- Make
serde(alias)work in combination withflattenwhen 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
- Update to 2018 edition
v1.0.179
v1.0.178
- Fix build error when using serde with "std" feature turned off and "unstable" feature turned on (#2541)
v1.0.177
- Add
serde(rename_all_fields = "...")attribute to apply arename_allon every struct variant of an enum (#1695, thanks @jplatte) - Improve diagnostics for attribute parse errors (#2536, thanks @jplatte)
v1.0.176
- 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
v1.0.174
- Documentation improvements
v1.0.173
- Fix missing trait implementations when using serde derive macro on a macro-generated data structure, such as via the
bitflagscrate (#2516)
v1.0.172
- Experiment with precompiling the serde_derive macros to reduce build time (#2514)
v1.0.171
- Support
derive(Deserialize)on unit structs that have const generics (#2500, thanks @Baptistemontan)
v1.0.170
- 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
- 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
- Allow
serde::de::IgnoredAnyto be the type for aserde(flatten)field (#2436, thanks @Mingun) - Allow larger preallocated capacity for smaller elements (#2494)
v1.0.167
v1.0.166
- Add
no-alloccategory to crates.io metadata
v1.0.165
- Fix incorrect count of fields passed to tuple deserialization methods when using
serde(skip_deserializing)attributes (#2466, thanks @Mingun) - Fix
-Zminimal-versionsbuild
v1.0.164
- Allowed enum variants to be individually marked as untagged (#2403, thanks @dewert99)
v1.0.163
- Eliminate build script from serde_derive crate to slightly reduce build time (#2442, thanks @taiki-e)
v1.0.162
-
Support deserializing flattened adjacently tagged enums from data formats which represent fields as bytes, such as the
csvcrate (#2377, thanks @mfro)#[derive(Deserialize)] pub struct Record { common: u64, #[serde(flatten)] kind: Kind, } #[derive(Deserialize)] #[serde(tag = "kind", content = "parameter", rename_all = "lowercase")] enum Kind { Foo(u64), Bar(bool), }common,kind,parameter 1,foo,42 2,bar,true
v1.0.161
v1.0.160
- Make derived serializer/deserializer internals
doc(hidden)(#2426, thanks @compiler-errors)
v1.0.159
- Accept empty #[serde()] attribute (#2422)
v1.0.158
- Fix "expected serde crate attribute to be a string" error when using macro_rules metavariable inside of serde attribute:
#[serde(crate = $serde_path)](#2409)
v1.0.157
- Update syn dependency to 2.x
v1.0.156
- Documentation improvements
v1.0.155
- Support
SerializeandDeserializeimpls forcore::ffi::CStrandalloc::ffi::CStringwithout "std" feature (#2374, thanks @safarir)
v1.0.154
- Fix "undeclared lifetime" error in generated code when deriving Deserialize for an enum with both
flattenand'staticfields (#2383, thanks @Mingun)
v1.0.153
v1.0.152
- Documentation improvements
v1.0.151
- Update
serde::{ser,de}::StdErrorto re-exportcore::error::Errorwhen serde is built withfeature="std"off andfeature="unstable"on (#2344)
v1.0.150
- Relax some trait bounds from the
Serializeimpl ofHashMapandBTreeMap(#2334) - Enable
SerializeandDeserializeimpls ofstd::sync::atomictypes on more platforms (#2337, thanks @badboy)
v1.0.149
- Relax some trait bounds from the
Serializeimpl ofBinaryHeap,BTreeSet, andHashSet(#2333, thanks @jonasbb)
v1.0.148
- Support
remotederive for generic types that have private fields (#2327)
v1.0.147
- Add
serde::de::value::EnumAccessDeserializerwhich transforms anEnumAccessinto aDeserializer(#2305)
v1.0.146
v1.0.145
- Allow RefCell<T>, Mutex<T>, and RwLock<T> to be serialized regardless of whether T is
Sized(#2282, thanks @ChayimFriedman2)
v1.0.144
- 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
- Invert build.rs cfgs in serde_test to produce the most modern configuration in the default case (#2253, thanks @taiki-e)
v1.0.142
- Add keywords to crates.io metadata
v1.0.141
- Add
no-stdcategory to crates.io metadata
v1.0.140
- Invert serde_derive cfgs to convenience non-Cargo builds on a modern toolchain (#2251, thanks @taiki-e)
v1.0.139
- Add
newconstructor function for allIntoDeserializerimpls (#2246)
v1.0.138
- Documentation improvements
v1.0.137
- Update documentation links to some data formats whose repos have moved (#2201, thanks @atouchet)
- Fix declared
rust-versionof serde and serde_test (#2168)
v1.0.136
- Improve default error message when
Visitorfails to deserialize a u128 or i128 (#2167)
v1.0.135
- Update discord channels listed in readme
v1.0.134
- Improve error messages on deserializing NonZero integers from a 0 value (#2158)
v1.0.133
- Optimize deserialization of data structures that contain recursive use of
flattenfields ortagoruntaggedenums (#2148)
v1.0.132
- Enable Serialize and Deserialize impls for
std::sync::atomic::{AtomicI64, AtomicU64}on riscv64 arch (#2141, thanks @Avimitin)
v1.0.131
- Avoid
unused_resultsbeing triggered in generated code for adjacently tagged enum (#2116, thanks @tyranron)
v1.0.130
- Provide
MapAccessandSeqAccessimpl for reference to a dynamically sized existing impl (#2081)
v1.0.129
v1.0.128
- Enable 128-bit integers on emscripten in Rust 1.40+ (#2076, thanks @Manishearth)
v1.0.127
- Resolve warning in rustc nightly-2021-07-31+ compiling serde_test
v1.0.126
- Resolve conflict with
forbid(future_incompatible)lint setting in generated code (#2026, thanks @hyd-dev)
v1.0.125
- Improve performance of serializing
Ipv4Addr(#2001, thanks @saethlin)
v1.0.124
v1.0.123
- Support
Selfkeywords in fields of types that derive Deserialize (#1830, thanks @taiki-e) - Allow floats to be deserialized from ints in tagged unions (#1842, thanks @Timmmm)
- Support
Selfinside fields that use serialize_with (#1970)
v1.0.122
-
Add IntoDeserializer impl for &[u8] (#1898, thanks @Mingun)
-
Handle unrecognized numeric field keys during deserialization of a field_identifier, equivalently to string field keys (#1914, thanks @Mingun)
-
Add attribute to override default deserialization failure expectation message (#1916, thanks @Mingun)
#[derive(Deserialize)] #[serde(untagged, expecting = "single version or array of versions")] struct VersionSpec { One(Version), Many(Vec<Version>), } -
Improve
serde_testhandling of map entries and error message construction (#1918, thanks @Mingun) -
Produce more accurate location information on test failures from
serde_testcrate (#1920, thanks @Mingun) -
Improve diagnostic on failure to parse a
rename_allattribute (#1960, #1961) -
Eliminate unnecessary trait bounds on some value Deserializer impls (#1963)
v1.0.121
- Support borrowed data during deserialization of a field identifier (#1917, thanks @Mingun)
- Fix panic when deserializing
Durationwith nanoseconds that cause the seconds counter to overflow (#1958, thanks @jonasbb)
v1.0.120
v1.0.119
v1.0.118
v1.0.117
- Allow serialization of std::net::SocketAddrV6 to include a scope id if present (based on https://github.com/rust-lang/rust/pull/77426)
v1.0.116
- Fix deserialization of IpAddr, SocketAddr, Bound, Result, OsString in formats which process variant identifiers as u64 (#1888, thanks @joshtriplett)
v1.0.115
- Support
#[serde(flatten)]on a field whose type is a type parameter and concrete type is()(#1873)
v1.0.114
- Improve
packedrepr matching to support deriving Serialize for structs havingrepr(C, packed)(#1813, thanks @TannerRogalsky)
v1.0.113
v1.0.112
- Support
serde(flatten)on map types where the Serializer only works with serialize_entry (#1837)
v1.0.111
- Process borrowed lifetimes inside of interpolated macro_rules metavariables, such as in the case of
#[derive(Deserialize)] struct S<'a> { field: $field }(#1821)
v1.0.110
- Support deriving Serialize impl for a
repr(packed)struct (#1791, thanks @alvardes)
v1.0.109
- Allow adjacently tagged newtype variants containing
Optionto omit the content field when deserializing (#1553, #1706, thanks @zth0) - Avoid panicking when a SystemTime older than UNIX_EPOCH is serialized (#1702, thanks @hjiayz)
v1.0.108
-
Provide a
Serializerimpl that can write primitives and unit variants to a&mut fmt::Formatter(#1705, thanks @jethrogb)use serde::Serialize; use std::fmt::{self, Display}; #[derive(Serialize)] #[serde(rename_all = "kebab-case")] pub enum MessageType { StartRequest, EndRequest, } impl Display for MessageType { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { self.serialize(f) } }
v1.0.107
- Fix panic during macro expansion when using
serde(skip)andserde(other)in the same enum (#1804)
v1.0.106
- Hide dummy const implementation detail from rustdoc when documenting a binary crate (#1768, thanks @robo9k)
v1.0.105
- Allow #[serde(borrow)] to work on non-standard
Cowtypes (#1754, thanks @maciejhirsz)
serde-rs/json (serde_json)
v1.0.140
- Documentation improvements
v1.0.139
- Documentation improvements
v1.0.138
- Documentation improvements
v1.0.137
- Turn on "float_roundtrip" and "unbounded_depth" features for serde_json in play.rust-lang.org (#1231)
v1.0.136
- Optimize serde_json::value::Serializer::serialize_map by using Map::with_capacity (#1230, thanks @goffrie)
v1.0.135
- Add serde_json::Map::into_values method (#1226, thanks @tisonkun)
v1.0.134
v1.0.133
- Implement From<[T; N]> for serde_json::Value (#1215)
v1.0.132
- Improve binary size and compile time for JSON array and JSON object deserialization by about 50% (#1205)
- Improve performance of JSON array and JSON object deserialization by about 8% (#1206)
v1.0.131
- Implement Deserializer and IntoDeserializer for
Map<String, Value>and&Map<String, Value>(#1135, thanks @swlynch99)
v1.0.130
v1.0.129
v1.0.128
- Support serializing maps containing 128-bit integer keys to serde_json::Value (#1188, thanks @Mrreadiness)
v1.0.127
v1.0.126
- Improve string parsing on targets that use 32-bit pointers but also have fast 64-bit integer arithmetic, such as aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (#1182, thanks @CryZe)
v1.0.125
- Speed up \uXXXX parsing and improve handling of unpaired surrogates when deserializing to bytes (#1172, #1175, thanks @purplesyringa)
v1.0.124
- Fix a bug in processing string escapes in big-endian architectures (#1173, thanks @purplesyringa)
v1.0.123
- Optimize string parsing by applying SIMD-within-a-register: 30.3% improvement on twitter.json from 613 MB/s to 799 MB/s (#1161, thanks @purplesyringa)
v1.0.122
- Support using
json!in no-std crates (#1166)
v1.0.121
- Optimize position search in error path (#1160, thanks @purplesyringa)
v1.0.120
- Correctly specify required version of
indexmapdependency (#1152, thanks @cforycki)
v1.0.119
v1.0.118
- Implement Hash for serde_json::Value (#1127, thanks @edwardycl)
v1.0.117
- Resolve unexpected_cfgs warning (#1130)
v1.0.116
- Make module structure comprehensible to static analysis (#1124, thanks @mleonhard)
v1.0.115
- Documentation improvements
v1.0.114
- Fix unused_imports warnings when compiled by rustc 1.78
v1.0.113
- Add
swap_removeandshift_removemethods on Map (#1109)
v1.0.112
- Improve formatting of "invalid type" error messages involving floats (#1107)
v1.0.111
v1.0.110
- Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache
v1.0.109
- Documentation improvements
v1.0.108
- Documentation improvements (#1075, #1081, #1082, thanks @dimo414 and @fritzrehde)
v1.0.107
[Compare Source](https://redirect.github.com/serde-rs/json/compare/v1.0.106...v1
Configuration
📅 Schedule: Branch creation - "before 3am" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.
⚠ 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: transpiled/reason-react/src-tauri/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path transpiled/reason-react/src-tauri/Cargo.toml --workspace
Updating crates.io index
error: failed to select a version for `tauri`.
... required by package `app v0.1.0 (/tmp/renovate/repos/github/tauri-apps/smoke-tests/transpiled/reason-react/src-tauri)`
versions that meet the requirements `^1.0.0-beta-rc.4` are: 1.6.3, 1.6.2, 1.6.1, 1.6.0, 1.5.4, 1.5.3, 1.5.2, 1.5.1, 1.5.0, 1.4.1, 1.4.0, 1.3.0, 1.2.5, 1.2.4, 1.2.3, 1.2.2, 1.2.1, 1.2.0, 1.1.4, 1.1.3, 1.1.2, 1.1.1, 1.1.0, 1.0.9, 1.0.8, 1.0.7, 1.0.6, 1.0.5, 1.0.4, 1.0.3, 1.0.2, 1.0.1, 1.0.0, 1.0.0-rc.17, 1.0.0-rc.16, 1.0.0-rc.15, 1.0.0-rc.14, 1.0.0-rc.13, 1.0.0-rc.12, 1.0.0-rc.11, 1.0.0-rc.10, 1.0.0-rc.9, 1.0.0-rc.8, 1.0.0-rc.7, 1.0.0-rc.6, 1.0.0-rc.5, 1.0.0-rc.4, 1.0.0-rc.3, 1.0.0-rc.2, 1.0.0-rc.1, 1.0.0-rc.0
the package `app` depends on `tauri`, with features: `all-api` but `tauri` does not have these features.
failed to select a version for `tauri` which could resolve this conflict
File name: transpiled/mint-tauri-starter/src-tauri/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path transpiled/mint-tauri-starter/src-tauri/Cargo.toml --workspace
Updating crates.io index
error: failed to select a version for `tauri`.
... required by package `app v0.1.0 (/tmp/renovate/repos/github/tauri-apps/smoke-tests/transpiled/mint-tauri-starter/src-tauri)`
versions that meet the requirements `^1.0.0-beta-rc.4` are: 1.6.3, 1.6.2, 1.6.1, 1.6.0, 1.5.4, 1.5.3, 1.5.2, 1.5.1, 1.5.0, 1.4.1, 1.4.0, 1.3.0, 1.2.5, 1.2.4, 1.2.3, 1.2.2, 1.2.1, 1.2.0, 1.1.4, 1.1.3, 1.1.2, 1.1.1, 1.1.0, 1.0.9, 1.0.8, 1.0.7, 1.0.6, 1.0.5, 1.0.4, 1.0.3, 1.0.2, 1.0.1, 1.0.0, 1.0.0-rc.17, 1.0.0-rc.16, 1.0.0-rc.15, 1.0.0-rc.14, 1.0.0-rc.13, 1.0.0-rc.12, 1.0.0-rc.11, 1.0.0-rc.10, 1.0.0-rc.9, 1.0.0-rc.8, 1.0.0-rc.7, 1.0.0-rc.6, 1.0.0-rc.5, 1.0.0-rc.4, 1.0.0-rc.3, 1.0.0-rc.2, 1.0.0-rc.1, 1.0.0-rc.0
the package `app` depends on `tauri`, with features: `all-api` but `tauri` does not have these features.
failed to select a version for `tauri` which could resolve this conflict
File name: transpiled/flutter/src-tauri/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path transpiled/flutter/src-tauri/Cargo.toml --workspace
Updating crates.io index
error: failed to select a version for `tauri`.
... required by package `app v0.1.0 (/tmp/renovate/repos/github/tauri-apps/smoke-tests/transpiled/flutter/src-tauri)`
versions that meet the requirements `^1.0.0-beta-rc.4` are: 1.6.3, 1.6.2, 1.6.1, 1.6.0, 1.5.4, 1.5.3, 1.5.2, 1.5.1, 1.5.0, 1.4.1, 1.4.0, 1.3.0, 1.2.5, 1.2.4, 1.2.3, 1.2.2, 1.2.1, 1.2.0, 1.1.4, 1.1.3, 1.1.2, 1.1.1, 1.1.0, 1.0.9, 1.0.8, 1.0.7, 1.0.6, 1.0.5, 1.0.4, 1.0.3, 1.0.2, 1.0.1, 1.0.0, 1.0.0-rc.17, 1.0.0-rc.16, 1.0.0-rc.15, 1.0.0-rc.14, 1.0.0-rc.13, 1.0.0-rc.12, 1.0.0-rc.11, 1.0.0-rc.10, 1.0.0-rc.9, 1.0.0-rc.8, 1.0.0-rc.7, 1.0.0-rc.6, 1.0.0-rc.5, 1.0.0-rc.4, 1.0.0-rc.3, 1.0.0-rc.2, 1.0.0-rc.1, 1.0.0-rc.0
the package `app` depends on `tauri`, with features: `all-api` but `tauri` does not have these features.
failed to select a version for `tauri` which could resolve this conflict
⚠️ 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: transpiled/flutter/src-tauri/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path transpiled/flutter/src-tauri/Cargo.toml --workspace
Updating crates.io index
error: failed to select a version for `tauri`.
... required by package `app v0.1.0 (/tmp/renovate/repos/github/tauri-apps/smoke-tests/transpiled/flutter/src-tauri)`
versions that meet the requirements `^1.0.0-beta-rc.4` are: 1.8.0, 1.7.2, 1.7.1, 1.7.0, 1.6.8, 1.6.7, 1.6.6, 1.6.4, 1.6.3, 1.6.2, 1.6.1, 1.6.0, 1.5.4, 1.5.3, 1.5.2, 1.5.1, 1.5.0, 1.4.1, 1.4.0, 1.3.0, 1.2.5, 1.2.4, 1.2.3, 1.2.2, 1.2.1, 1.2.0, 1.1.4, 1.1.3, 1.1.2, 1.1.1, 1.1.0, 1.0.9, 1.0.8, 1.0.7, 1.0.6, 1.0.5, 1.0.4, 1.0.3, 1.0.2, 1.0.1, 1.0.0, 1.0.0-rc.17, 1.0.0-rc.16, 1.0.0-rc.15, 1.0.0-rc.14, 1.0.0-rc.13, 1.0.0-rc.12, 1.0.0-rc.11, 1.0.0-rc.10, 1.0.0-rc.9, 1.0.0-rc.8, 1.0.0-rc.7, 1.0.0-rc.6, 1.0.0-rc.5, 1.0.0-rc.4, 1.0.0-rc.3, 1.0.0-rc.2, 1.0.0-rc.1, 1.0.0-rc.0
the package `app` depends on `tauri`, with features: `all-api` but `tauri` does not have these features.
failed to select a version for `tauri` which could resolve this conflict
File name: transpiled/mint-tauri-starter/src-tauri/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path transpiled/mint-tauri-starter/src-tauri/Cargo.toml --workspace
Updating crates.io index
error: failed to select a version for `tauri`.
... required by package `app v0.1.0 (/tmp/renovate/repos/github/tauri-apps/smoke-tests/transpiled/mint-tauri-starter/src-tauri)`
versions that meet the requirements `^1.0.0-beta-rc.4` are: 1.8.0, 1.7.2, 1.7.1, 1.7.0, 1.6.8, 1.6.7, 1.6.6, 1.6.4, 1.6.3, 1.6.2, 1.6.1, 1.6.0, 1.5.4, 1.5.3, 1.5.2, 1.5.1, 1.5.0, 1.4.1, 1.4.0, 1.3.0, 1.2.5, 1.2.4, 1.2.3, 1.2.2, 1.2.1, 1.2.0, 1.1.4, 1.1.3, 1.1.2, 1.1.1, 1.1.0, 1.0.9, 1.0.8, 1.0.7, 1.0.6, 1.0.5, 1.0.4, 1.0.3, 1.0.2, 1.0.1, 1.0.0, 1.0.0-rc.17, 1.0.0-rc.16, 1.0.0-rc.15, 1.0.0-rc.14, 1.0.0-rc.13, 1.0.0-rc.12, 1.0.0-rc.11, 1.0.0-rc.10, 1.0.0-rc.9, 1.0.0-rc.8, 1.0.0-rc.7, 1.0.0-rc.6, 1.0.0-rc.5, 1.0.0-rc.4, 1.0.0-rc.3, 1.0.0-rc.2, 1.0.0-rc.1, 1.0.0-rc.0
the package `app` depends on `tauri`, with features: `all-api` but `tauri` does not have these features.
failed to select a version for `tauri` which could resolve this conflict
File name: transpiled/reason-react/src-tauri/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path transpiled/reason-react/src-tauri/Cargo.toml --workspace
Updating crates.io index
error: failed to select a version for `tauri`.
... required by package `app v0.1.0 (/tmp/renovate/repos/github/tauri-apps/smoke-tests/transpiled/reason-react/src-tauri)`
versions that meet the requirements `^1.0.0-beta-rc.4` are: 1.8.0, 1.7.2, 1.7.1, 1.7.0, 1.6.8, 1.6.7, 1.6.6, 1.6.4, 1.6.3, 1.6.2, 1.6.1, 1.6.0, 1.5.4, 1.5.3, 1.5.2, 1.5.1, 1.5.0, 1.4.1, 1.4.0, 1.3.0, 1.2.5, 1.2.4, 1.2.3, 1.2.2, 1.2.1, 1.2.0, 1.1.4, 1.1.3, 1.1.2, 1.1.1, 1.1.0, 1.0.9, 1.0.8, 1.0.7, 1.0.6, 1.0.5, 1.0.4, 1.0.3, 1.0.2, 1.0.1, 1.0.0, 1.0.0-rc.17, 1.0.0-rc.16, 1.0.0-rc.15, 1.0.0-rc.14, 1.0.0-rc.13, 1.0.0-rc.12, 1.0.0-rc.11, 1.0.0-rc.10, 1.0.0-rc.9, 1.0.0-rc.8, 1.0.0-rc.7, 1.0.0-rc.6, 1.0.0-rc.5, 1.0.0-rc.4, 1.0.0-rc.3, 1.0.0-rc.2, 1.0.0-rc.1, 1.0.0-rc.0
the package `app` depends on `tauri`, with features: `all-api` but `tauri` does not have these features.
failed to select a version for `tauri` which could resolve this conflict