tinymist/crates/tinymist-package/src
QuadnucYard 3a51577b28
fix: eliminate clippy warnings (#2036)
using clippy 0.1.91 (898aff704d 2025-08-14), but some warnings already
exist in the latest stable version
mostly about elided lifetime and if-chain

only remaining warnings:
```
warning: struct `HashRepr` is never constructed
   --> crates\tinymist-query\src\tests.rs:462:12
    |
462 | pub struct HashRepr<T>(pub T);
    |            ^^^^^^^^
    |
    = note: `#[warn(dead_code)]` on by default

warning: a method with this name may be added to the standard library in the future
   --> crates\tinymist\src\actor\editor.rs:103:30
    |
103 | ...                   .map_or_default(|fid| unix_slash(fid.vpath().as_rooted_path()));
    |                        ^^^^^^^^^^^^^^
    |
    = warning: once this associated item is added to the standard library, the ambiguity may cause an error or change in behavior!
    = note: for more information, see issue #48919 <https://github.com/rust-lang/rust/issues/48919>
    = help: call with fully qualified syntax `typst::typst_utils::OptionExt::map_or_default(...)` to keep using the current method
    = note: `#[warn(unstable_name_collisions)]` on by default
help: add `#![feature(result_option_map_or_default)]` to the crate attributes to enable `std::option::Option::<T>::map_or_default`
   --> crates\tinymist\src\lib.rs:3:1
    |
  3 + #![feature(result_option_map_or_default)]
    |
```
2025-08-18 12:42:03 +08:00
..
pack build: upgrade tinymist-{derive,l10n,package,std}, typst-shim edition… (#1995) 2025-08-06 14:01:01 +08:00
registry build: upgrade tinymist-{derive,l10n,package,std}, typst-shim edition… (#1995) 2025-08-06 14:01:01 +08:00
lib.rs feat: extract package implementation (#1647) 2025-04-16 18:19:03 +08:00
pack.rs fix: eliminate clippy warnings (#2036) 2025-08-18 12:42:03 +08:00
registry.rs feat: add memory registry (#1709) 2025-04-30 01:49:11 +08:00