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

chore(deps): update all non-major dependencies (minor) - autoclosed #3

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jul 19, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
eslint (source) ^8.44.0 -> ^8.45.0 age adoption passing confidence devDependencies minor
open 3.0.3 -> 3.2.0 age adoption passing confidence dependencies minor
rand (source) 0.7.2 -> 0.8.5 age adoption passing confidence dependencies minor
tauri (source) 1.0.5 -> 1.4.1 age adoption passing confidence dependencies minor
uuid 1.1.2 -> 1.4.1 age adoption passing confidence dependencies minor

Release Notes

eslint/eslint (eslint)

v8.45.0

Compare Source

Features

  • cdd063c feat: Expose LegacyESLint in unsupported API (#​17341) (Nicholas C. Zakas)
  • d34abe5 feat: fix indent rule for else-if (#​17318) (Milos Djermanovic)

Bug Fixes

  • b79b6fb fix: Fix suggestion message in no-useless-escape (#​17339) (Francesco Trotta)
  • c667055 fix: provide unique fix and fix.range objects in lint messages (#​17332) (Milos Djermanovic)

Documentation

  • 89f3225 docs: add playground links to correct and incorrect code blocks (#​17306) (Josh Goldberg ✨)
  • f8892b5 docs: Expand rule option schema docs (#​17198) (Matt Wilkinson)
  • 8bcbf11 docs: Config Migration Guide (#​17230) (Ben Perlmutter)
  • bb30908 docs: Update README (GitHub Actions Bot)
  • 84d243b docs: Update README (GitHub Actions Bot)
  • b762632 docs: Update README (GitHub Actions Bot)
  • 138c096 docs: add more prefer-destructuring examples with array destructuring (#​17330) (Milos Djermanovic)
  • 1fc50a8 docs: max-len rule code and tabWidth as positional arguments (#​17331) (Jesús Leganés-Combarro)

Chores

Byron/open-rs (open)

v3.2.0

Compare Source

New Features
  • upgrade windows-sys to more recent version.
    This mainly reduces build times for some, and may increase them for
    others, on windows only. If build times increase, try to upgrade
    windows-sys across the dependency tree.
Commit Statistics
  • 5 commits contributed to the release.
  • 1 commit was understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages
Commit Details
view details
  • Uncategorized
    • Release open v3.2.0 (eea4f27)
    • Prepare changelog prior to release (20c6ee4)
    • Upgrade windows-sys to more recent version. (c3d2819)
    • Upgrade to windows-sys v0.42 (4de95c7)
    • Revert "Upgrade to windows-sys v0.42.0" (2aff3bd)

v3.1.0

Compare Source

YANKED

New Features
  • upgrade windows-sys to more recent version.
    This mainly reduces build times for some, and may increase them for
    others, on windows only. If build times increase, try to upgrade
    windows-sys across the dependency tree.
Commit Statistics
  • 7 commits contributed to the release over the course of 8 calendar days.
  • 65 days passed between releases.
  • 1 commit was understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages
Commit Details
view details
  • Uncategorized
    • Release open v3.1.0 (37bf011)
    • Upgrade windows-sys to more recent version. (a1c8dd7)
    • Upgrade to windows-sys v0.42.0 (aba0a62)
    • Update listed version number. (7a1cc83)
    • Merge branch 'fmt' (f4dfeab)
    • Point docs link to docs.rs rather than an outdated copy (52f96fc)
    • Update Readme (98316c4)
rust-random/rand (rand)

v0.8.5

Compare Source

Fixes
  • Fix build on non-32/64-bit architectures (#​1144)
  • Fix "min_const_gen" feature for no_std (#​1173)
  • Check libc::pthread_atfork return value with panic on error (#​1178)
  • More robust reseeding in case ReseedingRng is used from a fork handler (#​1178)
  • Fix nightly: remove unused slice_partition_at_index feature (#​1215)
  • Fix nightly + simd_support: update packed_simd (#​1216)
Rngs
  • StdRng: Switch from HC128 to ChaCha12 on emscripten (#​1142).
    We now use ChaCha12 on all platforms.
Documentation
  • Added docs about rand's use of const generics (#​1150)
  • Better random chars example (#​1157)

v0.8.4

Compare Source

Additions
  • Use const-generics to support arrays of all sizes (#​1104)
  • Implement Clone and Copy for Alphanumeric (#​1126)
  • Add Distribution::map to derive a distribution using a closure (#​1129)
  • Add Slice distribution (#​1107)
  • Add DistString trait with impls for Standard and Alphanumeric (#​1133)
Other
  • Reorder asserts in Uniform float distributions for easier debugging of non-finite arguments
    (#​1094, #​1108)
  • Add range overflow check in Uniform float distributions (#​1108)
  • Deprecate rngs::adapter::ReadRng (#​1130)

v0.8.3

Compare Source

Fixes
  • Fix no-std + alloc build by gating choose_multiple_weighted on std (#​1088)

v0.8.2

Compare Source

Fixes
  • Fix panic in UniformInt::sample_single_inclusive and Rng::gen_range when
    providing a full integer range (eg 0..=MAX) (#​1087)

v0.8.1

Compare Source

Other
  • Enable all stable features in the playground (#​1081)

v0.8.0

Compare Source

Platform support
  • The minimum supported Rust version is now 1.36 (#​1011)
  • getrandom updated to v0.2 (#​1041)
  • Remove wasm-bindgen and stdweb feature flags. For details of WASM support,
    see the getrandom documentation. (#​948)
  • ReadRng::next_u32 and next_u64 now use little-Endian conversion instead
    of native-Endian, affecting results on Big-Endian platforms (#​1061)
  • The nightly feature no longer implies the simd_support feature (#​1048)
  • Fix simd_support feature to work on current nightlies (#​1056)
Rngs
  • ThreadRng is no longer Copy to enable safe usage within thread-local destructors (#​1035)
  • gen_range(a, b) was replaced with gen_range(a..b). gen_range(a..=b) is
    also supported. Note that a and b can no longer be references or SIMD types. (#​744, #​1003)
  • Replace AsByteSliceMut with Fill and add support for [bool], [char], [f32], [f64] (#​940)
  • Restrict rand::rngs::adapter to std (#​1027; see also #​928)
  • StdRng: add new std_rng feature flag (enabled by default, but might need
    to be used if disabling default crate features) (#​948)
  • StdRng: Switch from ChaCha20 to ChaCha12 for better performance (#​1028)
  • SmallRng: Replace PCG algorithm with xoshiro{128,256}++ (#​1038)
Sequences
  • Add IteratorRandom::choose_stable as an alternative to choose which does
    not depend on size hints (#​1057)
  • Improve accuracy and performance of IteratorRandom::choose (#​1059)
  • Implement IntoIterator for IndexVec, replacing the into_iter method (#​1007)
  • Add value stability tests for seq module (#​933)
Misc
  • Support PartialEq and Eq for StdRng, SmallRng and StepRng (#​979)
  • Added a serde1 feature and added Serialize/Deserialize to UniformInt and WeightedIndex (#​974)
  • Drop some unsafe code (#​962, #​963, #​1011)
  • Reduce packaged crate size (#​983)
  • Migrate to GitHub Actions from Travis+AppVeyor (#​1073)
Distributions
  • Alphanumeric samples bytes instead of chars (#​935)
  • Uniform now supports char, enabling rng.gen_range('A'..='Z') (#​1068)
  • Add UniformSampler::sample_single_inclusive (#​1003)
Weighted sampling
  • Implement weighted sampling without replacement (#​976, #​1013)
  • rand::distributions::alias_method::WeightedIndex was moved to rand_distr::WeightedAliasIndex.
    The simpler alternative rand::distribution::WeightedIndex remains. (#​945)
  • Improve treatment of rounding errors in WeightedIndex::update_weights (#​956)
  • WeightedIndex: return error on NaN instead of panic (#​1005)
Documentation
  • Document types supported by random (#​994)
  • Document notes on password generation (#​995)
  • Note that SmallRng may not be the best choice for performance and in some
    other cases (#​1038)
  • Use doc(cfg) to annotate feature-gated items (#​1019)
  • Adjust README (#​1065)

v0.7.3

Compare Source

Fixes
  • The Bernoulli distribution constructors now reports an error on NaN and on
    denominator == 0. (#​925)
  • Use std::sync::Once to register fork handler, avoiding possible atomicity violation (#​928)
  • Fix documentation on the precision of generated floating-point values
Changes
  • Unix: make libc dependency optional; only use fork protection with std feature (#​928)
Additions
  • Implement std::error::Error for BernoulliError (#​919)
tauri-apps/tauri (tauri)

v1.4.1

Compare Source

v1.4.0: @​tauri-apps/cli v1.4.0

Compare Source

[1.4.0]

New Features
  • 0ddbb3a1(#​7015) Provide prebuilt CLIs for Windows ARM64 targets.
  • 35cd751a(#​5176) Added the desktop_template option on tauri.conf.json > tauri > bundle > deb.
  • 6c5ade08(#​4537) Added tauri completions to generate shell completions scripts.
  • e092f799(#​6887) Add nsis > template option to specify custom NSIS installer template.
Enhancements
Bug Fixes

v1.3.0

Compare Source

v1.2.5: tauri v1.2.5

Compare Source

Updating crates.io index

Cargo Audit

Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 543 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (470 crate dependencies)
Crate:     kuchiki
Version:   0.8.1
Warning:   unmaintained
Title:     `kuchiki` is unmaintained
Date:      2023-01-21
ID:        RUSTSEC-2023-0019
URL:       https://rustsec.org/advisories/RUSTSEC-2023-0019
Dependency tree:
kuchiki 0.8.1
├── wry 0.23.4
│   └── tauri-runtime-wry 0.12.3
│       └── tauri 1.2.5
│           ├── tauri 1.2.5
│           ├── restart 0.1.0
│           └── app-updater 0.1.0
└── tauri-utils 1.2.1
    ├── tauri-runtime-wry 0.12.3
    ├── tauri-runtime 0.12.2
    │   ├── tauri-runtime-wry 0.12.3
    │   └── tauri 1.2.5
    ├── tauri-macros 1.2.1
    │   └── tauri 1.2.5
    ├── tauri-codegen 1.2.1
    │   ├── tauri-macros 1.2.1
    │   └── tauri-build 1.2.1
    │       └── app-updater 0.1.0
    ├── tauri-build 1.2.1
    ├── tauri 1.2.5
    └── config-schema 0.0.0

Crate:     atty
Version:   0.2.14
Warning:   unsound
Title:     Potential unaligned read
Date:      2021-07-04
ID:        RUSTSEC-2021-0145
URL:       https://rustsec.org/advisories/RUSTSEC-2021-0145
Dependency tree:
atty 0.2.14
├── colored 2.0.0
│   └── mockito 0.31.1
│       └── tauri 1.2.5
│           ├── tauri 1.2.5
│           ├── restart 0.1.0
│           └── app-updater 0.1.0
└── clap 3.2.25
    └── tauri 1.2.5

warning: 2 allowed warnings found

[1.2.5]

  • Block remote URLs from accessing the IPC.
    • 9c0593c33 feat(core): block remote URLs from accessing the IPC on 2023-04-12

Cargo Publish

Updating crates.io index
   Packaging tauri v1.2.5 (/home/runner/work/tauri/tauri/core/tauri)
   Verifying tauri v1.2.5 (/home/runner/work/tauri/tauri/core/tauri)
 Downloading crates ...
  Downloaded crypto-common v0.1.6
  Downloaded block-buffer v0.10.4
  Downloaded cpufeatures v0.2.7
  Downloaded alloc-no-stdlib v2.0.4
  Downloaded xattr v0.2.3
  Downloaded tauri-macros v1.2.1
  Downloaded futures-macro v0.3.28
  Downloaded same-file v1.0.6
  Downloaded serde_repr v0.1.12
  Downloaded fastrand v1.9.0
  Downloaded alloc-stdlib v0.2.2
  Downloaded filetime v0.2.21
  Downloaded sha2 v0.10.6
  Downloaded walkdir v2.3.3
  Downloaded signal-hook-registry v1.4.1
  Downloaded digest v0.10.6
  Downloaded serialize-to-javascript-impl v0.1.1
  Downloaded treediff v3.0.2
  Downloaded serialize-to-javascript v0.1.1
  Downloaded tauri-codegen v1.2.1
  Downloaded glob v0.3.1
  Downloaded generic-array v0.14.7
  Downloaded json-patch v0.2.7
  Downloaded globset v0.4.10
  Downloaded tokio-macros v2.1.0
  Downloaded ico v0.2.0
  Downloaded tar v0.4.38
  Downloaded tempfile v3.5.0
  Downloaded state v0.5.3
  Downloaded socket2 v0.4.9
  Downloaded typenum v1.16.0
  Downloaded mio v0.8.6
  Downloaded ignore v0.4.18
  Downloaded aho-corasick v0.7.20
  Downloaded bstr v1.4.0
  Downloaded libm v0.2.6
  Downloaded brotli-decompressor v2.3.4
  Downloaded tokio v1.28.0
  Downloaded tauri-runtime-wry v0.12.3
  Downloaded encoding_rs v0.8.32
  Downloaded brotli v3.3.4
   Compiling proc-macro2 v1.0.56
   Compiling quote v1.0.26
   Compiling unicode-ident v1.0.8
   Compiling serde_derive v1.0.160
   Compiling syn v2.0.15
   Compiling serde v1.0.160
   Compiling autocfg v1.1.0
   Compiling libc v0.2.142
   Compiling smallvec v1.10.0
   Compiling pkg-config v0.3.27
   Compiling indexmap v1.9.3
   Compiling hashbrown v0.12.3
   Compiling heck v0.4.1
   Compiling winnow v0.4.6
   Compiling cfg-if v1.0.0
   Compiling target-lexicon v0.12.7
   Compiling cfg-expr v0.15.1
   Compiling version-compare v0.1.1
   Compiling syn v1.0.109
   Compiling toml_datetime v0.6.1
   Compiling serde_spanned v0.6.1
   Compiling toml_edit v0.19.8
   Compiling toml v0.7.3
   Compiling system-deps v6.0.5
   Compiling version_check v0.9.4
   Compiling once_cell v1.17.1
   Compiling glib-sys v0.15.10
   Compiling gobject-sys v0.15.10
   Compiling bitflags v1.3.2
   Compiling ppv-lite86 v0.2.17
   Compiling siphasher v0.3.10
   Compiling getrandom v0.1.16
   Compiling getrandom v0.2.9
   Compiling thiserror v1.0.40
   Compiling rand_core v0.5.1
   Compiling proc-macro-error-attr v1.0.4
   Compiling thiserror-impl v1.0.40
   Compiling futures-core v0.3.28
   Compiling rand_chacha v0.2.2
   Compiling rand_pcg v0.2.1
   Compiling proc-macro-error v1.0.4
   Compiling slab v0.4.8
   Compiling anyhow v1.0.71
   Compiling futures-task v0.3.28
   Compiling rand v0.7.3
   Compiling phf_shared v0.8.0
   Compiling gio-sys v0.15.10
   Compiling gdk-sys v0.15.1
   Compiling pin-project-lite v0.2.9
   Compiling futures-util v0.3.28
   Compiling phf_generator v0.8.0
   Compiling proc-macro-crate v1.3.1
   Compiling futures-macro v0.3.28
   Compiling pin-utils v0.1.0
   Compiling log v0.4.17
   Compiling futures-channel v0.3.28
   Compiling rand_core v0.6.4
   Compiling proc-macro-hack v0.5.20+deprecated
   Compiling unicode-segmentation v1.10.1
   Compiling fnv v1.0.7
   Compiling futures-executor v0.3.28
   Compiling heck v0.3.3
   Compiling rand_chacha v0.3.1
   Compiling glib-macros v0.15.13
   Compiling phf_shared v0.10.0
   Compiling atk-sys v0.15.1
   Compiling toml v0.5.11
   Compiling cfg-expr v0.9.1
   Compiling lock_api v0.4.9
   Compiling semver v1.0.17
   Compiling version-compare v0.0.11
   Compiling parking_lot_core v0.9.7
   Compiling system-deps v5.0.0
   Compiling glib v0.15.12
   Compiling rand v0.8.5
   Compiling gdk-pixbuf-sys v0.15.10
   Compiling pango-sys v0.15.10
   Compiling cairo-sys-rs v0.15.1
   Compiling scopeguard v1.1.0
   Compiling phf_generator v0.10.0
   Compiling phf_codegen v0.8.0
   Compiling serde_json v1.0.96
   Compiling memchr v2.5.0
   Compiling itoa v1.0.6
   Compiling parking_lot v0.12.1
   Compiling gtk-sys v0.15.3
   Compiling ryu v1.0.13
   Compiling phf_macros v0.8.0
   Compiling gio v0.15.12
   Compiling byteorder v1.4.3
   Compiling new_debug_unreachable v1.0.4
   Compiling phf v0.8.0
   Compiling string_cache_codegen v0.5.2
   Compiling tinyvec_macros v0.1.1
   Compiling ident_case v1.0.1
   Compiling futures-io v0.3.28
   Compiling precomputed-hash v0.1.1
   Compiling mac v0.1.1
   Compiling strsim v0.10.0
   Compiling simd-adler32 v0.3.5
   Compiling crc32fast v1.3.2
   Compiling darling_core v0.20.1
   Compiling futf v0.1.5
   Compiling markup5ever v0.10.1
   Compiling tinyvec v1.6.0
   Compiling rustc_version v0.4.0
   Compiling soup2-sys v0.2.0
   Compiling uuid v1.3.2
   Compiling cssparser v0.27.2
   Compiling memoffset v0.8.0
   Compiling typenum v1.16.0
   Compiling utf-8 v0.7.6
   Compiling adler v1.0.2
   Compiling dtoa v0.4.8
   Compiling dtoa-short v0.3.3
   Compiling miniz_oxide v0.7.1
   Compiling tendril v0.4.3
   Compiling field-offset v0.3.5
   Compiling unicode-normalization v0.1.22
   Compiling darling_macro v0.20.1
   Compiling string_cache v0.8.7
   Compiling selectors v0.22.0
   Compiling generic-array v0.14.7
   Compiling cssparser-macros v0.6.0
   Compiling html5ever v0.25.2
   Compiling nodrop v0.1.14
   Compiling stable_deref_trait v1.2.0
   Compiling alloc-no-stdlib v2.0.4
   Compiling convert_case v0.4.0
   Compiling percent-encoding v2.2.0
   Compiling unicode-bidi v0.3.13
   Compiling matches v0.1.10
   Compiling itoa v0.4.8
   Compiling idna v0.3.0
   Compiling form_urlencoded v1.1.0
   Compiling derive_more v0.99.17
   Compiling alloc-stdlib v0.2.2
   Compiling servo_arc v0.1.1
   Compiling flate2 v1.0.26
   Compiling darling v0.20.1
   Compiling gdk-pixbuf v0.15.11
   Compiling fdeflate v0.3.0
   Compiling fxhash v0.2.1
   Compiling cairo-rs v0.15.12
   Compiling pango v0.15.10
   Compiling javascriptcore-rs-sys v0.4.0
   Compiling gtk v0.15.5
   Compiling thin-slice v0.1.1
   Compiling same-file v1.0.6
   Compiling crossbeam-utils v0.8.15
   Compiling walkdir v2.3.3
   Compiling gdk v0.15.4
   Compiling png v0.17.8
   Compiling serde_with_macros v2.3.3
   Compiling brotli-decompressor v2.3.4
   Compiling url v2.3.1
   Compiling cfb v0.7.3
   Compiling atk v0.15.1
   Compiling treediff v4.0.2
   Compiling phf_macros v0.10.0
   Compiling gtk3-macros v0.15.6
   Compiling webkit2gtk-sys v0.18.0
   Compiling x11 v2.21.0
   Compiling phf v0.10.1
   Compiling json-patch v1.0.0
   Compiling infer v0.12.0
   Compiling brotli v3.3.4
   Compiling kuchiki v0.8.1
   Compiling serde_with v2.3.3
   Compiling gdkx11-sys v0.15.1
   Compiling ctor v0.1.26
   Compiling x11-dl v2.21.0
   Compiling cc v1.0.79
   Compiling glob v0.3.1
   Compiling bytes v1.4.0
   Compiling tauri-utils v1.3.0
   Compiling tao v0.15.8
   Compiling block-buffer v0.10.4
   Compiling crypto-common v0.1.6
   Compiling raw-window-handle v0.5.2
   Compiling lazy_static v1.4.0
   Compiling io-lifetimes v1.0.10
   Compiling digest v0.10.6
   Compiling http v0.2.9
   Compiling soup2 v0.2.1
   Compiling crossbeam-channel v0.5.8
   Compiling javascriptcore-rs v0.16.0
   Compiling aho-corasick v1.0.1
   Compiling treediff v3.0.2
   Compiling instant v0.1.12
   Compiling regex-syntax v0.7.1
   Compiling cpufeatures v0.2.7
   Compiling rustix v0.37.18
   Compiling wry v0.23.4
   Compiling tauri-runtime v0.12.2
   Compiling sha2 v0.10.6
   Compiling regex v1.8.1
   Compiling json-patch v0.2.7
   Compiling webkit2gtk v0.18.2
   Compiling ico v0.2.0
   Compiling aho-corasick v0.7.20
   Compiling bstr v1.4.0
   Compiling tokio v1.28.0
   Compiling base64 v0.13.1
   Compiling linux-raw-sys v0.3.6
   Compiling http-range v0.1.5
   Compiling tauri-runtime-wry v0.12.3
   Compiling tauri-codegen v1.2.1
   Compiling globset v0.4.10
   Compiling mio v0.8.6
   Compiling tauri v1.2.5 (/home/runner/work/tauri/tauri/target/package/tauri-1.2.5)
   Compiling thread_local v1.1.7
   Compiling serialize-to-javascript-impl v0.1.1
   Compiling filetime v0.2.21
   Compiling tokio-macros v2.1.0
   Compiling xattr v0.2.3
   Compiling num_cpus v1.15.0
   Compiling socket2 v0.4.9
   Compiling dirs-sys-next v0.1.2
   Compiling signal-hook-registry v1.4.1
   Compiling fastrand v1.9.0
   Compiling tempfile v3.5.0
   Compiling dirs-next v2.0.0
   Compiling tar v0.4.38
   Compiling serialize-to-javascript v0.1.1
   Compiling ignore v0.4.18
   Compiling tauri-macros v1.2.1
   Compiling encoding_rs v0.8.32
   Compiling serde_repr v0.1.12
   Compiling state v0.5.3
    Finished dev [unoptimized + debuginfo] target(s) in 2m 33s
    Packaged 71 files, 817.0KiB (190.9KiB compressed)
   Uploading tauri v1.2.5 (/home/runner/work/tauri/tauri/core/tauri)
    Updating crates.io index
     Waiting on `tauri` to propagate to crates.io index (ctrl-c to wait asynchronously)
    Updating crates.io index
    Updating crates.io index
    Updating crates.io index
    Updating crates.io index
    Updating crates.io index
    Updating crates.io index
    Updating crates.io index

v1.2.4: tauri v1.2.4

Compare Source

Updating crates.io index

Cargo Audit

Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 486 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (441 crate dependencies)

[1.2.4]

  • Pin ignore to =0.4.18.
    • adcb082b chore(deps): pin ignore to =0.4.18 on 2023-01-17

Cargo Publish

Updating crates.io index
   Packaging tauri v1.2.4 (/home/runner/work/tauri/tauri/core/tauri)
   Verifying tauri v1.2.4 (/home/runner/work/tauri/tauri/core/tauri)
 Downloading crates ...
  Downloaded glob v0.3.1
  Downloaded phf_shared v0.10.0
  Downloaded alloc-stdlib v0.2.2
  Downloaded rand_pcg v0.2.1
  Downloaded rand_chacha v0.2.2
  Downloaded ppv-lite86 v0.2.17
  Downloaded block-buffer v0.10.3
  Downloaded futures-core v0.3.25
  Downloaded gdk-pixbuf v0.15.11
  Downloaded futures-channel v0.3.25
  Downloaded thin-slice v0.1.1
  Downloaded markup5ever v0.10.1
  Downloaded gdk-sys v0.15.1
  Downloaded field-offset v0.3.4
  Downloaded filetime v0.2.19
  Downloaded fnv v1.0.7
  Downloaded cfg-expr v0.11.0
  Downloaded futures-macro v0.3.25
  Downloaded futures-task v0.3.25
  Downloaded atk v0.15.1
  Downloaded gio-sys v0.15.10
  Downloaded glib v0.15.12
  Downloaded rustc_version v0.4.0
  Downloaded tauri-macros v1.2.1
  Downloaded tauri-codegen v1.2.1
  Downloaded generic-array v0.14.6
  Downloaded tokio-macros v1.8.2
  Downloaded itoa v0.4.8
  Downloaded http-range v0.1.5
  Downloaded typenum v1.16.0
  Downloaded ucd-trie v0.1.5
  Downloaded utf-8 v0.7.6
  Downloaded phf_generator v0.8.0
  Downloaded phf_codegen v0.8.0
  Downloaded phf_shared v0.8.0
  Downloaded phf_macros v0.10.0
  Downloaded serialize-to-javascript-impl v0.1.1
  Downloaded precomputed-hash v0.1.1
  Downloaded proc-macro-crate v1.2.1
  Downloaded treediff v3.0.2
  Downloaded remove_dir_all v0.5.3
  Downloaded serde_repr v0.1.10
  Downloaded json-patch v0.2.7
  Downloaded soup2 v0.2.1
  Downloaded serialize-to-javascript v0.1.1
  Downloaded siphasher v0.3.10
  Downloaded version-compare v0.0.11
  Downloaded uuid v1.2.2
  Downloaded uuid v0.8.2
  Downloaded string_cache_codegen v0.5.2
  Downloaded x11 v2.21.0
  Downloaded tauri-runtime-wry v0.12.2
  Downloaded cairo-sys-rs v0.15.1
  Downloaded gobject-sys v0.15.10
  Downloaded globset v0.4.10
  Downloaded lock_api v0.4.9
  Downloaded parking_lot v0.12.1
  Downloaded xattr v0.2.3
  Downloaded rand_core v0.6.4
  Downloaded selectors v0.22.0
  Downloaded webkit2gtk-sys v0.18.0
  Downloaded tauri-runtime v0.12.1
  Downloaded tendril v0.4.3
  Downloaded x11-dl v2.21.0
  Downloaded system-deps v6.0.3
  Downloaded string_cache v0.8.4
  Downloaded tokio v1.24.2
  Downloaded tar v0.4.38
  Downloaded socket2 v0.4.7
  Downloaded version-compare v0.1.1
  Downloaded wry v0.23.4
  Downloaded unicode-segmentation v1.10.0
  Downloaded walkdir v2.3.2
  Downloaded brotli v3.3.4
  Downloaded serde_with v1.14.0
  Downloaded crc32fast v1.3.2
  Downloaded darling_core v0.13.4
  Downloaded fastrand v1.8.0
  Downloaded gtk v0.15.5
  Downloaded encoding_rs v0.8.31
  Downloaded cairo-rs v0.15.12
  Downloaded bstr v1.1.0
  Downloaded tempfile v3.3.0
  Downloaded tao v0.15.8
  Downloaded pango-sys v0.15.10
  Downloaded javascriptcore-rs v0.16.0
  Downloaded phf_macros v0.8.0
  Downloaded derive_more v0.99.17
  Downloaded cfg-expr v0.9.1
  Downloaded cfb v0.6.1
  Downloaded tauri-utils v1.2.1
  Downloaded brotli-decompressor v2.3.4
  Downloaded system-deps v5.0.0
  Downloaded sha2 v0.10.6
  Downloaded cssparser v0.27.2
  Downloaded atk-sys v0.15.1
  Downloaded state v0.5.3
  Downloaded signal-hook-registry v1.4.0
  Downloaded dtoa v0.4.8
  Downloaded webkit2gtk v0.18.2
  Downloaded soup2-sys v0.2.0
  Downloaded slab v0.4.7
  Downloaded serde_with_macros v1.5.2
  Downloaded semver-parser v0.10.2
  Downloaded semver v0.11.0
  Downloaded rand v0.7.3
  Downloaded dtoa-short v0.3.3
  Downloaded rand_core v0.5.1
  Downloaded rand v0.8.5
  Downloaded cssparser-macros v0.6.0
  Downloaded proc-macro-hack v0.5.20+deprecated
  Downloaded ctor v0.1.26
  Downloaded rand_chacha v0.3.1
  Downloaded png v0.17.7
  Downloaded pest v2.5.3
  Downloaded parking_lot_core v0.9.6
  Downloaded mio v0.8.5
  Downloaded http v0.2.8
  Downloaded cty v0.2.2
  Downloaded ignore v0.4.18
  Downloaded html5ever v0.25.2
  Downloaded glib-sys v0.15.10
  Downloaded glib-macros v0.15.11
  Downloaded convert_case v0.4.0
  Downloaded alloc-no-stdlib v2.0.4
  Downloaded infer v0.7.0
  Downloaded digest v0.10.6
  Downloaded darling_macro v0.13.4
  Downloaded crypto-common v0.1.6
  Downloaded cpufeatures v0.2.5
  Downloaded stable_deref_trait v1.2.0
  Downloaded ico v0.2.0
  Downloaded rustc_version v0.3.3
  Downloaded gdkx11-sys v0.15.1
  Downloaded gtk-sys v0.15.3
  Downloaded kuchiki v0.8.1
  Downloaded servo_arc v0.1.1
  Downloaded same-file v1.0.6
  Downloaded pango v0.15.10
  Downloaded getrandom v0.1.16
  Downloaded gdk v0.15.4
  Downloaded nodrop v0.1.14
  Downloaded raw-window-handle v0.5.0
  Downloaded pin-utils v0.1.0
  Downloaded memoffset v0.6.5
  Downloaded phf_generator v0.10.0
  Downloaded gdk-pixbuf-sys v0.15.10
  Downloaded phf v0.10.1
  Downloaded fxhash v0.2.1
  Downloaded flate2 v1.0.25
  Downloaded phf v0.8.0
  Downloaded javascriptcore-rs-sys v0.4.0
  Downloaded futures-io v0.3.25
  Downloaded futf v0.1.5
  Downloaded mac v0.1.1
  Downloaded new_debug_unreachable v1.0.4
  Downloaded matches v0.1.9
  Downloaded gtk3-macros v0.15.4
  Downloaded instant v0.1.12
  Downloaded heck v0.3.3
  Downloaded getrandom v0.2.8
  Downloaded futures-util v0.3.25
  Downloaded gio v0.15.12
  Downloaded futures-executor v0.3.25
  Downloaded darling v0.13.4
   Compiling proc-macro2 v1.0.50
   Compiling quote v1.0.23
   Compiling unicode-ident v1.0.6
   Compiling syn v1.0.107
   Compiling serde_derive v1.0.152
   Compiling serde v1.0.152
   Compiling libc v0.2.139
   Compiling smallvec v1.10.0
   Compiling pkg-config v0.3.26
   Compiling heck v0.4.0
   Compiling cfg-if v1.0.0
   Compiling cfg-expr v0.11.0
   Compiling version-compare v0.1.1
   Compiling autocfg v1.1.0
   Compiling version_check v0.9.4
   Compiling once_cell v1.17.0
   Compiling thiserror v1.0.38
   Compiling ppv-lite86 v0.2.17
   Compiling siphasher v0.3.10
   Compiling getrandom v0.1.16
   Compiling bitflags v1.3.2
   Compiling rand_core v0.5.1
   Compiling proc-macro-error-attr v1.0.4
   Compiling getrandom v0.2.8
   Compiling futures-core v0.3.25
   Compiling thiserror-impl v1.0.38
   Compiling rand_chacha v0.2.2
   Compiling rand_pcg v0.2.1
   Compiling proc-macro-error v1.0.4
   Compiling slab v0.4.7
   Compiling anyhow v1.0.68
   Compiling futures-task v0.3.25
   Compiling rand v0.7.3
   Compiling phf_shared v0.8.0
   Compiling futures-util v0.3.25
   Compiling pin-project-lite v0.2.9
   Compiling phf_generator v0.8.0
   Compiling toml v0.5.10
   Compiling system-deps v6.0.3
   Compiling proc-macro-crate v1.2.1
   Compiling glib-sys v0.15.10
   Compiling gobject-sys v0.15.10
   Compiling gio-sys v0.15.10
   Compiling gdk-sys v0.15.1
   Compiling futures-macro v0.3.25
   Compiling futures-channel v0.3.25
   Compiling pin-utils v0.1.0
   Compiling log v0.4.17
   Compiling rand_core v0.6.4
   Compiling proc-macro-hack v0.5.20+deprecated
   Compiling unicode-segmentation v1.10.0
   Compiling futures-executor v0.3.25
   Compiling heck v0.3.3
   Compiling rand_chacha v0.3.1
   Compiling glib-macros v0.15.11
   Compiling atk-sys v0.15.1
   Compiling phf_shared v0.10.0
   Compiling lock_api v0.4.9
   Compiling cfg-expr v0.9.1
   Compiling version-compare v0.0.11
   Compiling parking_lot_core v0.9.6
   Compiling system-deps v5.0.0
   Compiling glib v0.15.12
   Compiling rand v0.8.5
   Compiling cairo-sys-rs v0.15.1
   Compiling pango-sys v0.15.10
   Compiling gdk-pixbuf-sys v0.15.10
   Compiling scopeguard v1.1.0
   Compiling fnv v1.0.7
   Compiling phf_generator v0.10.0
   Compiling phf_codegen v0.8.0
   Compiling ucd-trie v0.1.5
   Compiling memchr v2.5.0
   Compiling pest v2.5.3
   Compiling parking_lot v0.12.1
   Compiling gtk-sys v0.15.3
   Compiling semver-parser v0.10.2
   Compiling phf_macros v0.8.0
   Compiling itoa v1.0.5
   Compiling new_debug_unreachable v1.0.4
   Compiling gio v0.15.12
   Compiling byteorder v1.4.3
   Compiling serde_json v1.0.91
   Compiling phf v0.8.0
   Compiling semver v0.11.0
   Compiling string_cache_codegen v0.5.2
   Compiling tinyvec_macros v0.1.0
   Compiling precomputed-hash v0.1.1
   Compiling strsim v0.10.0
   Compiling futures-io v0.3.25
   Compiling ryu v1.0.12
   Compiling mac v0.1.1
   Compiling crc32fast v1.3.2
   Compiling ident_case v1.0.1
   Compiling darling_core v0.13.4
   Compiling futf v0.1.5
   Compiling markup5ever v0.10.1
   Compiling tinyvec v1.6.0
   Compiling rustc_version v0.3.3
   Compiling soup2-sys v0.2.0
   Compiling cssparser v0.27.2
   Compiling memoffset v0.6.5
   Compiling typenum v1.16.0
   Compiling dtoa v0.4.8
   Compiling utf-8 v0.7.6
   Compiling adler v1.0.2
   Compiling miniz_oxide v0.6.2
   Compiling tendril v0.4.3
   Compiling dtoa-short v0.3.3
   Compiling field-offset v0.3.4
   Compiling unicode-normalization v0.1.22
   Compiling darling_macro v0.13.4
   Compiling string_cache v0.8.4
   Compiling selectors v0.22.0
   Compiling cssparser-macros v0.6.0
   Compiling html5ever v0.25.2
   Compiling generic-array v0.14.6
   Compiling convert_case v0.4.0
   Compiling percent-encoding v2.2.0
   Compiling nodrop v0.1.14
   Compiling matches v0.1.9
   Compiling alloc-no-stdlib v2.0.4
   Compiling stable_deref_trait v1.2.0
   Compiling unicode-bidi v0.3.8
   Compiling itoa v0.4.8
   Compiling idna v0.3.0
   Compiling servo_arc v0.1.1
   Compiling alloc-stdlib v0.2.2
   Compiling form_urlencoded v1.1.0
   Compiling derive_more v0.99.17
   Compiling flate2 v1.0.25
   Compiling darling v0.13.4
   Compiling gdk-pixbuf v0.15.11
   Compiling fxhash v0.2.1
   Compiling pango v0.15.10
   Compiling cairo-rs v0.15.12
   Compiling javascriptcore-rs-sys v0.4.0
   Compiling gtk v0.15.5
   Compiling thin-slice v0.1.1
   Compiling crossbeam-utils v0.8.14
   Compiling uuid v0.8.2
   Compiling same-file v1.0.6
   Compiling semver v1.0.16
   Compiling walkdir v2.3.2
   Compiling cfb v0.6.1
   Compiling gdk v0.15.4
   Compiling serde_with_macros v1.5.2
   Compiling png v0.17.7
   Compiling url v2.3.1
   Compiling brotli-decompressor v2.3.4
   Compiling atk v0.15.1
   Compiling treediff v3.0.2
   Compiling phf_macros v0.10.0
   Compiling gtk3-macros v0.15.4
   Compiling webkit2gtk-sys v0.18.0
   Compiling uuid v1.2.2
   Compiling x11 v2.21.0
   Compiling phf v0.10.1
   Compiling json-patch v0.2.7
   Compiling brotli v3.3.4
   Compiling kuchiki v0.8.1
   Compiling serde_with v1.14.0
   Compiling infer v0.7.0
   Compiling gdkx11-sys v0.15.1
   Compiling ctor v0.1.26
   Compiling x11-dl v2.21.0
   Compiling bytes v1.3.0
   Compiling glob v0.3.1
   Compiling cty v0.2.2
   Compiling cc v1.0.78
   Compiling tao v0.15.8
   Compiling raw-window-handle v0.5.0
   Compiling tauri-utils v1.2.1
   Compiling block-buffer v0.10.3
   Compiling crypto-common v0.1.6
   Compiling lazy_static v1.4.0
   Compiling digest v0.10.6
   Compiling http v0.2.8
   Compiling soup2 v0.2.1
   Compiling crossbeam-channel v0.5.6
   Compiling javascriptcore-rs v0.16.0
   Compiling aho-corasick v0.7.20
   Compiling instant v0.1.12
   Compiling cpufeatures v0.2.5
   Compiling regex-syntax v0.6.28
   Compiling wry v0.23.4
   Compiling tauri-runtime v0.12.1
   Compiling regex v1.7.1
   Compiling sha2 v0.10.6
   Compiling webkit2gtk v0.18.2
   Compiling ico v0.2.0
   Compiling bstr v1.1.0
   Compiling tokio v1.24.2
   Compiling http-range v0.1.5
   Compiling base64 v0.13.1
   Compiling encoding_rs v0.8.31
   Compiling tauri-runtime-wry v0.12.2
   Compiling tauri-codegen v1.2.1
   Compiling globset v0.4.10
   Compiling mio v0.8.5
   Compiling serialize-to-javascript-impl v0.1.1
   Compiling tokio-macros v1.8.2
   Compiling tauri v1.2.4 (/home/runner/work/tauri/tauri/target/package/tauri-1.2.4)
   Compiling thread_local v1.1.4
   Compiling filetime v0.2.19
   Compiling socket2 v0.4.7
   Compiling dirs-sys-next v0.1.2
   Compiling xattr v0.2.3
   Compiling num_cpus v1.15.0
   Compiling signal-hook-registry v1.4.0
   Compiling fastrand v1.8.0
   Compiling remove_dir_all v0.5.3
   Compiling tempfile v3.3.0
   Compiling tar v0.4.38
   Compiling dirs-next v2.0.0
   Compiling ignore v0.4.18
   Compiling serialize-to-javascript v0.1.1
   Compiling tauri-macros v1.2.1
   Compiling serde_repr v0.1.10
   Compiling state v0.5.3
    Finished dev [unoptimized + debuginfo] target(s) in 2m 45s
   Uploading tauri v1.2.4 (/home/runner/work/tauri/tauri/core/tauri)
    Updating crates.io index
     Waiting on `tauri` to propagate to crates.io index (ctrl-c to wait asynchronously)
    Updating crates.io index
    Updating crates.io index
    Updating crates.io index
    Updating crates.io index
    Updating crates.io index
    Updating crates.io index

v1.2.3

Compare Source

v1.2.2

Compare Source

v1.2.1

Compare Source

v1.2.0

Compare Source

v1.1.4: tauri v1.1.4

Compare Source

Updating crates.io index

Cargo Audit

Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 543 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (472 crate dependencies)
Crate:     kuchiki
Version:   0.8.1
Warning:   unmaintained
Title:     `kuchiki` is unmaintained
Date:      2023-01-21
ID:        RUSTSEC-2023-0019
URL:       https://rustsec.org/advisories/RUSTSEC-2023-0019
Dependency tree:
kuchiki 0.8.1
├── wry 0.21.1
│   └── tauri-runtime-wry 0.11.2
│       └── tauri 1.1.4
│           ├── tauri 1.1.4
│           ├── restart 0.1.0
│           └── app-updater 0.1.0
└── tauri-utils 1.1.1
    ├── tauri-runtime-wry 0.11.2
    ├── tauri-runtime 0.11.2
    │   ├── tauri-runtime-wry 0.11.2
    │   └── tauri 1.1.4
    ├── tauri-macros 1.1.1
    │   └── tauri 1.1.4
    ├── tauri-codegen 1.1.1
    │   ├── tauri-macros 1.1.1
    │   └── tauri-build 1.1.1
    │       └── app-updater 0.1.0
    ├── tauri-build 1.1.1
    └── tauri 1.1.4

Crate:     atty
Version:   0.2.14
Warning:   unsound
Title:     Potential unaligned read
Date:      2021-07-04
ID:        RUSTSEC-2021-0145
URL:       https://rustsec.org/advisories/RUSTSEC-2021-0145
Dependency tree:
atty 0.2.14
├── colored 2.0.0
│   └── mockito 0.31.1
│       └── tauri 1.1.4
│           ├── tauri 1.1.4
│           ├── restart 0.1.0
│           └── app-updater 0.1.0
└── clap 3.2.25
    └── tauri 1.1.4

warning: 2 allowed warnings found

[1.1.4]

  • Block remote URLs from accessing the IPC.
    • 58ea0b452 feat(core): block remote URLs from accessing the IPC on 2023-04-12

Cargo Publish

Updating crates.io index
   Packaging tauri v1.1.4 (/home/runner/work/tauri/tauri/core/tauri)
   Verifying tauri v1.1.4 (/home/runner/work/tauri/tauri/core/tauri)
 Downloading crates ...
  Downloaded bstr v1.4.0
  Downloaded ignore v0.4.20
  Downloaded treediff v3.0.2
  Downloaded block-buffer v0.10.4
  Downloaded alloc-no-stdlib v2.0.4
  Downloaded glob v0.3.1
  Downloaded crypto-common v0.1.6
  Downloaded digest v0.10.6
  Downloaded futures-macro v0.3.28
  Downloaded generic-array v0.14.7
  Downloaded globset v0.4.10
  Downloaded same-file v1.0.6
  Downloaded mio v0.8.6
  Downloaded socket2 v0.4.9
  Downloaded sha2 v0.10.6
  Downloaded tauri-codegen v1.2.1
  Downloaded fastrand v1.9.0
  Downloaded brotli-decompressor v2.3.4
  Downloaded serialize-to-javascript v0.1.1
  Downloaded libm v0.2.6
  Downloaded serialize-to-javascript-impl v0.1.1
  Downloaded json-patch v0.2.7
  Downloaded tar v0.4.38
  Downloaded state v0.5.3
  Downloaded signal-hook-registry v1.4.1
  Downloaded ico v0.2.0
  Downloaded serde_repr v0.1.12
  Downloaded aho-corasick v0.7.20
  Downloaded walkdir v2.3.3
  Downloaded alloc-stdlib v0.2.2
  Downloaded tokio-macros v2.1.0
  Downloaded xattr v0.2.3
  Downloaded tempfile v3.5.0
  Downloaded typenum v1.16.0
  Downloaded cpufeatures v0.2.7
  Downloaded tauri-macros v1.2.1
  Downloaded filetime v0.2.21
  Downloaded tokio v1.28.0
  Downloaded tauri-runtime-wry v0.11.2
  Downloaded brotli v3.3.4
  Downloaded encoding_rs v0.8.32
   Compiling proc-macro2 v1.0.56
   Compiling quote v1.0.26
   Compiling unicode-ident v1.0.8
   Compiling serde_derive v1.0.160
   Compiling syn v2.0.15
   Compiling serde v1.0.160
   Compiling autocfg v1.1.0
   Compiling libc v0.2.142
   Compiling smallvec v1.10.0
   Compiling pkg-config v0.3.27
   Compiling indexmap v1.9.3
   Compiling hashbrown v0.12.3
   Compiling heck v0.4.1
   Compiling winnow v0.4.6
   Compiling cfg-if v1.0.0
   Compiling target-lexicon v0.12.7
   Compiling cfg-expr v0.15.1
   Compiling version-compare v0.1.1
   Compiling syn v1.0.109
   Compiling toml_datetime v0.6.1
   Compiling serde_spanned v0.6.1
   Compiling toml_edit v0.19.8
   Compiling toml v0.7.3
   Compiling system-deps v6.0.5
   Compiling version_check v0.9.4
   Compiling once_cell v1.17.1
   Compiling glib-sys v0.15.10
   Compiling gobject-sys v0.15.10
   Compiling ppv-lite86 v0.2.17
   Compiling bitflags v1.3.2
   Compiling siphasher v0.3.10
   Compiling getrandom v0.1.16
   Compiling getrandom v0.2.9
   Compiling thiserror v1.0.40
   Compiling rand_core v0.5.1
   Compiling proc-macro-error-attr v1.0.4
   Compiling thiserror-impl v1.0.40
   Compiling futures-core v0.3.28
   Compiling rand_chacha v0.2.2
   Compiling rand_pcg v0.2.1
   Compiling proc-macro-error v1.0.4
   Compiling slab v0.4.8
   Compiling anyhow v1.0.71
   Compiling futures-task v0.3.28
   Compiling rand v0.7.3
   Compiling phf_shared v0.8.0
   Compiling gdk-sys v0.15.1
   Compiling gio-sys v0.15.10
   Compiling pin-project-lite v0.2.9
   Compiling futures-util v0.3.28
   Compiling phf_generator v0.8.0
   Compiling proc-macro-crate v1.3.1
   Compiling futures-macro v0.3.28
   Compiling pin-utils v0.1.0
   Compiling futures-channel v0.3.28
   Compiling log v0.4.17
   Compiling rand_core v0.6.4
   Compiling unicode-segmentation v1.10.1
   Compi

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 is behind base branch, 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 has been generated by Mend Renovate. View repository job log here.

@renovate
Copy link
Author

renovate bot commented Jul 19, 2023

⚠ Artifact update problem

Renovate failed to update an artifact 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: docker run --rm --name=renovate_a_sidecar --label=renovate_a_child --memory=3584m -v "/tmp/worker/9c2489/d8a584/repos/github/wibus-wee/tauri-rspc-prisma-any-template":"/tmp/worker/9c2489/d8a584/repos/github/wibus-wee/tauri-rspc-prisma-any-template" -v "/tmp/worker/9c2489/d8a584/cache":"/tmp/worker/9c2489/d8a584/cache" -e CONTAINERBASE_CACHE_DIR -w "/tmp/worker/9c2489/d8a584/repos/github/wibus-wee/tauri-rspc-prisma-any-template" ghcr.io/containerbase/sidecar:9.6.1 bash -l -c "install-tool rust 1.71.0 && cargo update --manifest-path core/Cargo.toml --workspace"
/usr/local/bin/docker: line 4: .: filename argument required
.: usage: . filename [arguments]
install: WARNING: failed to run ldconfig. this may happen when not installing as root. run with --verbose to see the error
error: failed to parse manifest at `/tmp/worker/9c2489/d8a584/repos/github/wibus-wee/tauri-rspc-prisma-any-template/core/Cargo.toml`

Caused by:
  invalid character `<` in package name: `<your_app_corename>`, the first character must be a Unicode XID start character (most letters or `_`)

@renovate renovate bot changed the title chore(deps): update all non-major dependencies (minor) chore(deps): update all non-major dependencies (minor) - autoclosed Jul 20, 2023
@renovate renovate bot closed this Jul 20, 2023
@renovate renovate bot deleted the renovate/all-minor-patch branch July 20, 2023 03:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants