Skip to content

Commit

Permalink
net/slumber: update to 2.1.0
Browse files Browse the repository at this point in the history
## [2.1.0] - 2024-09-27

### Added

- Use `SLUMBER_CONFIG_PATH` to customize configuration (_not_ collection) file path [#370](LucasPickering/slumber#370)
- Add a dynamic variant to `!select` chain type, allowing your collection to present a list of values driven from the output of another chain. (thanks @anussel5559)
  - [See docs for more](https://slumber.lucaspickering.me/book/api/request_collection/chain_source.html#select)
- Cancel in-flight requests with the `cancel` action (bound to escape by default)
- Add `slumber new` subcommand to generate new collection files [#376](LucasPickering/slumber#376)
- Add `default` field to profiles
  - When using the CLI, the `--profile` argument can be omitted to use the default profile
- Reset edited recipe values to their default using `z`
  - You can [customize the key](https://slumber.lucaspickering.me/book/api/configuration/input_bindings.html) to whatever you want
- Add `selector_mode` field to chains, to control how single vs multiple results from a JSONPath selector are handled
  - Previously, if a selector returned multiple results, an error was returned. Now, the result list will be rendered as a JSON array. To return to the previous behavior, set `selector_mode: single` in your chain.
  - [See docs for more](https://slumber.lucaspickering.me/book/api/request_collection/chain.html#selector-mode)

### Changed

- Update file locations to adhere to XDG spec on Linux [#371](LucasPickering/slumber#371)
  - Move config file to [config dir](https://docs.rs/dirs/latest/dirs/fn.config_dir.html), which remains the same on MacOS/Windows but changes on Linux. For backward compatibility, the previous path ([data dir](https://docs.rs/dirs/latest/dirs/fn.data_dir.html)) will be checked and used if present
  - Move log files to [state dir](https://docs.rs/dirs/latest/dirs/fn.state_dir.html) on Linux and [cache dir](https://docs.rs/dirs/latest/dirs/fn.cache_dir.html) on MacOS/Windows
  - Database file remains in [data dir](https://docs.rs/dirs/latest/dirs/fn.data_dir.html) on all platforms
- Create config file on startup if it doesn't exist
- If config file fails to load during TUI startup, display an error and fall back to the default, rather than crashing
- De-deprecate `{{env.VARIABLE}}` template sources
  - They'll remain as a simpler alternative to `!env` chains

### Fixed

- Updated the Configuration docs to remove the non-existent `slumber show dir` command (thanks @SVendittelli)
- Retain all request history when collection file is reloaded
  - Previously, pending and failed requests were lost on reload within a single session. These will still be lost when a session is exited.
- Fix serialization of query parameter lists
- Don't update UI for useless events (e.g. cursor moves)

## [2.0.0] - 2024-09-06

2.0 is headlined by a highly requested feature: one-off edits to recipes! If you need to tweak a query parameter or edit a body, but don't want to modify your collection file, you can now highlight the value in question and hit `e` to modify it. The override will be retained until you modify the collection file or exit Slumber, at which point it will revert to its original value.

Aside from the major new feature, there is one breaking change to the escape syntax of templates. The old backslash-based syntax was fraught with edge cases and unpredictable behavior. This new syntax is simpler to use, simpler to implement, and much more bulletproof. This syntax was rare to use to begin with, so **most people will be unimpacted by this change.**

Here's the full list of changes:

### Breaking

- Replace backslash escape sequence with a simpler scheme based on `_`
  - For example, previously a key would be escaped as `\{{`. This introduced complexities around how to handle additional backslashes, and also required doubling up backslashes in YAML
  - The new equivalent would be `{_{`, which parses as `{{`
  - The goal of this change is to make escaping behavior simpler and more consistent
  - For more info on the new behavior, [see the docs](https://slumber.lucaspickering.me/book/api/request_collection/template.html#escape-sequences)
- Remove `--log` CLI argument
  - See note on log files in Changed section for why this is no longer necessary

### Added

- Edit recipe values (query params, headers, etc.) in the TUI to provide one-off values
  - Press `e` on any value you want to edit (you can [customize the key](https://slumber.lucaspickering.me/book/api/configuration/input_bindings.html))
- Add `editor` field to the config, allowing you to customize what editor Slumber opens for in-app editing
  - [See docs for more](https://slumber.lucaspickering.me/book/api/configuration/editor.html)
- Add `!select` chain type, allowing your collection to prompt the user to select a value from a static list (thanks @anussel5559)
  - [See docs for more](https://slumber.lucaspickering.me/book/api/request_collection/chain_source.html#select)

### Changed

- `!json` bodies are now prettified when sent to the server
- Use `vim` as default editor if none is configured
- Move logs back to a shared file
  - They had been split into one file per session, which made them hard to find
  - The file is now eventually deleted once it exceeds a certain size

### Fixed

- Fix basic auth being label as bearer auth in Recipe Authentication pane
- Use correct binding for `search` action in the placeholder of the response filter textbox
  - Previously it was hardcoded to display the default of `/`
- Fix response body filter not applying on new responses
- Support quoted arguments in editor commands
- Fix certain UI values not persisting correctly
- Propagate unconsumed key events from text boxes
  - E.g. F5 will now refresh the collection while a text box is in focus
- Redraw TUI when terminal is resized
- Clamp text window scroll state when window is resized or text changes
- Fix extraneous input events when exiting Vim [#351](LucasPickering/slumber#351)
- Improve performance and fix crashes when handling large request/response bodies [#356](LucasPickering/slumber#356)
  - Further improvements for large bodies will be coming in the future

## [1.8.1] - 2024-08-11

This release is focused on improving rendering performance. The TUI should generally feel more polished and responsive when working with large bodies, and CPU usage will be much lower.

### Added

- Add `debug` configuration field, to enable developer information

### Fixed

- Reduce CPU usage while idling
  - Previously, Slumber would re-render every 250ms while idling, which could lead to high CPU usage, dependending on what's on the screen. Now it will only update when changes occur, meaning idle CPU usage will be nearly 0
- Fix backlogged events when renders are slow
  - If renders are being particular slow, it was previously possible for input events (e.g. repeated scrolling events) to occur faster than the UI could keep up. This would lead to "lock out" behavior, where you'd stop scrolling and it'd take a while for the UI to catch up.
  - Now, the TUI will skip draws as necessary to keep up with the input queue. In practice the skipping should be hard to notice as it only occurs during rapid TUI movements anyway.
- Improve rendering performance for large bodies and syntax highlighting
- Fix incorrect decoration in folder tree visualization

## [1.8.0] - 2024-08-09

The highlight (no pun intended) of this release is syntax highlighting. Beyond that, the release contains a variety of small fixes and improvements.

### Added

- Add syntax highlighting to recipe, request, and response display [#264](LucasPickering/slumber#264)

### Changed

- Change layout of internal database for request and UI state storage
  - This _shouldn't_ have any user impact, it's just a technical improvement. If you notice any issues such as missing or incorrect request history, please [let me know](https://github.com/LucasPickering/slumber/issues/new?assignees=&labels=bug&projects=&template=bug_report.md)
- Upgrade to Rust 1.80
- Disable unavailable menu actions [#222](LucasPickering/slumber#222)
- Support template for header names in the `section` field of `!request` chains
- Expand `~` to the home directory in `!file` chain sources and when saving response body as a file
- Ignore key events with additional key modifiers
  - For example, an action bound to `w` will no longer match `ctrl w`
- Actions can now be unbound by specifying an empty binding
  - For example, binding `submit: []` will make the submit action inaccessible

### Fixed

- Fix `cargo install slumber` when not using `--locked`
- Don't type in text boxes when modifiers keys (other than shift) are enabled
  - Should mitigate some potential confusing behavior when using terminal key sequences
- Query parameter and header toggle rows no longer lose their state when switching profiles
  • Loading branch information
0323pin committed Oct 13, 2024
1 parent 47721c0 commit d2581c4
Show file tree
Hide file tree
Showing 3 changed files with 260 additions and 181 deletions.
7 changes: 3 additions & 4 deletions net/slumber/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.24 2024/08/10 15:26:46 pin Exp $
# $NetBSD: Makefile,v 1.25 2024/10/13 20:21:34 pin Exp $

DISTNAME= slumber-1.7.0
# slumber-1.8.0 requires Rust >= 1.80.0 to build.
DISTNAME= slumber-2.1.0
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GITHUB:=LucasPickering/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Expand All @@ -13,7 +12,7 @@ LICENSE= mit

.include "cargo-depends.mk"

RUST_REQ= 1.76.0
RUST_REQ= 1.80.1
USE_TOOLS+= pkg-config

.include "../../lang/rust/cargo.mk"
Expand Down
108 changes: 64 additions & 44 deletions net/slumber/cargo-depends.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: cargo-depends.mk,v 1.22 2024/07/23 08:06:29 pin Exp $
# $NetBSD: cargo-depends.mk,v 1.23 2024/10/13 20:21:34 pin Exp $

CARGO_CRATE_DEPENDS+= addr2line-0.21.0
CARGO_CRATE_DEPENDS+= adler-1.0.2
Expand All @@ -14,50 +14,52 @@ CARGO_CRATE_DEPENDS+= anstyle-query-1.0.3
CARGO_CRATE_DEPENDS+= anstyle-wincon-3.0.3
CARGO_CRATE_DEPENDS+= anyhow-1.0.86
CARGO_CRATE_DEPENDS+= assert-json-diff-2.0.2
CARGO_CRATE_DEPENDS+= async-recursion-1.1.1
CARGO_CRATE_DEPENDS+= async-trait-0.1.80
CARGO_CRATE_DEPENDS+= async-trait-0.1.81
CARGO_CRATE_DEPENDS+= atomic-waker-1.1.2
CARGO_CRATE_DEPENDS+= autocfg-1.3.0
CARGO_CRATE_DEPENDS+= backtrace-0.3.71
CARGO_CRATE_DEPENDS+= base64-0.21.7
CARGO_CRATE_DEPENDS+= base64-0.22.1
CARGO_CRATE_DEPENDS+= bit-set-0.5.3
CARGO_CRATE_DEPENDS+= bit-vec-0.6.3
CARGO_CRATE_DEPENDS+= bitflags-1.3.2
CARGO_CRATE_DEPENDS+= bitflags-2.5.0
CARGO_CRATE_DEPENDS+= block-0.1.6
CARGO_CRATE_DEPENDS+= bumpalo-3.16.0
CARGO_CRATE_DEPENDS+= byteorder-1.5.0
CARGO_CRATE_DEPENDS+= bytes-1.6.0
CARGO_CRATE_DEPENDS+= bytesize-1.3.0
CARGO_CRATE_DEPENDS+= bytes-1.6.1
CARGO_CRATE_DEPENDS+= cassowary-0.3.0
CARGO_CRATE_DEPENDS+= castaway-0.2.2
CARGO_CRATE_DEPENDS+= castaway-0.2.3
CARGO_CRATE_DEPENDS+= cc-1.0.98
CARGO_CRATE_DEPENDS+= cfg-if-1.0.0
CARGO_CRATE_DEPENDS+= chrono-0.4.38
CARGO_CRATE_DEPENDS+= clap-4.5.4
CARGO_CRATE_DEPENDS+= clap_builder-4.5.2
CARGO_CRATE_DEPENDS+= clap_derive-4.5.4
CARGO_CRATE_DEPENDS+= clap-4.5.11
CARGO_CRATE_DEPENDS+= clap_builder-4.5.11
CARGO_CRATE_DEPENDS+= clap_derive-4.5.11
CARGO_CRATE_DEPENDS+= clap_lex-0.7.0
CARGO_CRATE_DEPENDS+= cli-clipboard-0.4.0
CARGO_CRATE_DEPENDS+= clipboard-win-4.5.0
CARGO_CRATE_DEPENDS+= colorchoice-1.0.1
CARGO_CRATE_DEPENDS+= compact_str-0.7.1
CARGO_CRATE_DEPENDS+= compact_str-0.8.0
CARGO_CRATE_DEPENDS+= console-0.15.8
CARGO_CRATE_DEPENDS+= core-foundation-0.9.4
CARGO_CRATE_DEPENDS+= core-foundation-sys-0.8.6
CARGO_CRATE_DEPENDS+= crossterm-0.27.0
CARGO_CRATE_DEPENDS+= crossterm-0.28.1
CARGO_CRATE_DEPENDS+= crossterm_winapi-0.9.1
CARGO_CRATE_DEPENDS+= deadpool-0.10.0
CARGO_CRATE_DEPENDS+= deadpool-runtime-0.1.4
CARGO_CRATE_DEPENDS+= derive-new-0.5.9
CARGO_CRATE_DEPENDS+= derive_more-1.0.0-beta.6
CARGO_CRATE_DEPENDS+= derive_more-impl-1.0.0-beta.6
CARGO_CRATE_DEPENDS+= derive_more-1.0.0
CARGO_CRATE_DEPENDS+= derive_more-impl-1.0.0
CARGO_CRATE_DEPENDS+= dialoguer-0.11.0
CARGO_CRATE_DEPENDS+= diff-0.1.13
CARGO_CRATE_DEPENDS+= dirs-5.0.1
CARGO_CRATE_DEPENDS+= dirs-sys-0.4.1
CARGO_CRATE_DEPENDS+= downcast-rs-1.2.1
CARGO_CRATE_DEPENDS+= editor-command-0.1.0
CARGO_CRATE_DEPENDS+= either-1.12.0
CARGO_CRATE_DEPENDS+= encode_unicode-0.3.6
CARGO_CRATE_DEPENDS+= env-lock-0.1.2
CARGO_CRATE_DEPENDS+= equivalent-1.0.1
CARGO_CRATE_DEPENDS+= errno-0.3.9
CARGO_CRATE_DEPENDS+= error-code-2.3.1
Expand Down Expand Up @@ -85,7 +87,6 @@ CARGO_CRATE_DEPENDS+= glob-0.3.1
CARGO_CRATE_DEPENDS+= h2-0.4.5
CARGO_CRATE_DEPENDS+= hashbrown-0.14.5
CARGO_CRATE_DEPENDS+= hashlink-0.9.1
CARGO_CRATE_DEPENDS+= heck-0.4.1
CARGO_CRATE_DEPENDS+= heck-0.5.0
CARGO_CRATE_DEPENDS+= hermit-abi-0.3.9
CARGO_CRATE_DEPENDS+= home-0.5.9
Expand All @@ -95,39 +96,42 @@ CARGO_CRATE_DEPENDS+= http-body-util-0.1.1
CARGO_CRATE_DEPENDS+= httparse-1.8.0
CARGO_CRATE_DEPENDS+= httpdate-1.0.3
CARGO_CRATE_DEPENDS+= hyper-1.3.1
CARGO_CRATE_DEPENDS+= hyper-rustls-0.26.0
CARGO_CRATE_DEPENDS+= hyper-rustls-0.27.2
CARGO_CRATE_DEPENDS+= hyper-util-0.1.3
CARGO_CRATE_DEPENDS+= iana-time-zone-0.1.60
CARGO_CRATE_DEPENDS+= iana-time-zone-haiku-0.1.2
CARGO_CRATE_DEPENDS+= idna-0.5.0
CARGO_CRATE_DEPENDS+= indexmap-2.2.6
CARGO_CRATE_DEPENDS+= inotify-0.9.6
CARGO_CRATE_DEPENDS+= inotify-sys-0.1.5
CARGO_CRATE_DEPENDS+= instability-0.3.2
CARGO_CRATE_DEPENDS+= inventory-0.3.15
CARGO_CRATE_DEPENDS+= ipnet-2.9.0
CARGO_CRATE_DEPENDS+= is_terminal_polyfill-1.70.0
CARGO_CRATE_DEPENDS+= itertools-0.12.1
CARGO_CRATE_DEPENDS+= itertools-0.13.0
CARGO_CRATE_DEPENDS+= itoa-1.0.11
CARGO_CRATE_DEPENDS+= js-sys-0.3.69
CARGO_CRATE_DEPENDS+= kqueue-1.0.8
CARGO_CRATE_DEPENDS+= kqueue-sys-1.0.4
CARGO_CRATE_DEPENDS+= lazy_static-1.4.0
CARGO_CRATE_DEPENDS+= libc-0.2.155
CARGO_CRATE_DEPENDS+= libm-0.2.8
CARGO_CRATE_DEPENDS+= libredox-0.1.3
CARGO_CRATE_DEPENDS+= libsqlite3-sys-0.28.0
CARGO_CRATE_DEPENDS+= linux-raw-sys-0.4.14
CARGO_CRATE_DEPENDS+= lock_api-0.4.12
CARGO_CRATE_DEPENDS+= log-0.4.21
CARGO_CRATE_DEPENDS+= lru-0.12.3
CARGO_CRATE_DEPENDS+= malloc_buf-0.0.6
CARGO_CRATE_DEPENDS+= matchers-0.1.0
CARGO_CRATE_DEPENDS+= memchr-2.7.2
CARGO_CRATE_DEPENDS+= memoffset-0.6.5
CARGO_CRATE_DEPENDS+= mime-0.3.17
CARGO_CRATE_DEPENDS+= mime_guess-2.0.4
CARGO_CRATE_DEPENDS+= minimal-lexical-0.2.1
CARGO_CRATE_DEPENDS+= miniz_oxide-0.7.3
CARGO_CRATE_DEPENDS+= mio-0.8.11
CARGO_CRATE_DEPENDS+= mio-1.0.1
CARGO_CRATE_DEPENDS+= nix-0.24.3
CARGO_CRATE_DEPENDS+= nom-7.1.3
CARGO_CRATE_DEPENDS+= notify-6.1.1
Expand All @@ -148,54 +152,65 @@ CARGO_CRATE_DEPENDS+= parking_lot-0.12.2
CARGO_CRATE_DEPENDS+= parking_lot_core-0.9.10
CARGO_CRATE_DEPENDS+= paste-1.0.15
CARGO_CRATE_DEPENDS+= percent-encoding-2.3.1
CARGO_CRATE_DEPENDS+= persisted-0.1.0
CARGO_CRATE_DEPENDS+= persisted_derive-0.1.0
CARGO_CRATE_DEPENDS+= persisted-0.3.1
CARGO_CRATE_DEPENDS+= persisted_derive-0.3.1
CARGO_CRATE_DEPENDS+= petgraph-0.6.5
CARGO_CRATE_DEPENDS+= pin-project-1.1.5
CARGO_CRATE_DEPENDS+= pin-project-internal-1.1.5
CARGO_CRATE_DEPENDS+= pin-project-lite-0.2.14
CARGO_CRATE_DEPENDS+= pin-utils-0.1.0
CARGO_CRATE_DEPENDS+= pkg-config-0.3.30
CARGO_CRATE_DEPENDS+= ppv-lite86-0.2.17
CARGO_CRATE_DEPENDS+= pretty_assertions-1.4.0
CARGO_CRATE_DEPENDS+= proc-macro2-1.0.83
CARGO_CRATE_DEPENDS+= proptest-1.5.0
CARGO_CRATE_DEPENDS+= proptest-derive-0.5.0
CARGO_CRATE_DEPENDS+= quick-error-1.2.3
CARGO_CRATE_DEPENDS+= quinn-0.11.2
CARGO_CRATE_DEPENDS+= quinn-proto-0.11.3
CARGO_CRATE_DEPENDS+= quinn-udp-0.5.4
CARGO_CRATE_DEPENDS+= quote-1.0.36
CARGO_CRATE_DEPENDS+= ratatui-0.26.3
CARGO_CRATE_DEPENDS+= rand-0.8.5
CARGO_CRATE_DEPENDS+= rand_chacha-0.3.1
CARGO_CRATE_DEPENDS+= rand_core-0.6.4
CARGO_CRATE_DEPENDS+= rand_xorshift-0.3.0
CARGO_CRATE_DEPENDS+= ratatui-0.28.0
CARGO_CRATE_DEPENDS+= redox_syscall-0.4.1
CARGO_CRATE_DEPENDS+= redox_syscall-0.5.1
CARGO_CRATE_DEPENDS+= redox_users-0.4.5
CARGO_CRATE_DEPENDS+= regex-1.10.5
CARGO_CRATE_DEPENDS+= regex-automata-0.1.10
CARGO_CRATE_DEPENDS+= regex-automata-0.4.6
CARGO_CRATE_DEPENDS+= regex-syntax-0.6.29
CARGO_CRATE_DEPENDS+= regex-syntax-0.8.3
CARGO_CRATE_DEPENDS+= relative-path-1.9.3
CARGO_CRATE_DEPENDS+= reqwest-0.12.4
CARGO_CRATE_DEPENDS+= reqwest-0.12.5
CARGO_CRATE_DEPENDS+= ring-0.17.8
CARGO_CRATE_DEPENDS+= rmp-0.8.14
CARGO_CRATE_DEPENDS+= rmp-serde-1.3.0
CARGO_CRATE_DEPENDS+= rstest-0.19.0
CARGO_CRATE_DEPENDS+= rstest_macros-0.19.0
CARGO_CRATE_DEPENDS+= rstest-0.21.0
CARGO_CRATE_DEPENDS+= rstest_macros-0.21.0
CARGO_CRATE_DEPENDS+= rusqlite-0.31.0
CARGO_CRATE_DEPENDS+= rusqlite_migration-1.2.0
CARGO_CRATE_DEPENDS+= rustc-demangle-0.1.24
CARGO_CRATE_DEPENDS+= rustc-hash-1.1.0
CARGO_CRATE_DEPENDS+= rustc_version-0.4.0
CARGO_CRATE_DEPENDS+= rustix-0.38.34
CARGO_CRATE_DEPENDS+= rustls-0.22.4
CARGO_CRATE_DEPENDS+= rustls-0.23.12
CARGO_CRATE_DEPENDS+= rustls-native-certs-0.7.0
CARGO_CRATE_DEPENDS+= rustls-pemfile-2.1.2
CARGO_CRATE_DEPENDS+= rustls-pki-types-1.7.0
CARGO_CRATE_DEPENDS+= rustls-webpki-0.102.4
CARGO_CRATE_DEPENDS+= rustls-webpki-0.102.6
CARGO_CRATE_DEPENDS+= rustversion-1.0.17
CARGO_CRATE_DEPENDS+= rusty-fork-0.3.0
CARGO_CRATE_DEPENDS+= ryu-1.0.18
CARGO_CRATE_DEPENDS+= same-file-1.0.6
CARGO_CRATE_DEPENDS+= schannel-0.1.23
CARGO_CRATE_DEPENDS+= scopeguard-1.2.0
CARGO_CRATE_DEPENDS+= security-framework-2.11.0
CARGO_CRATE_DEPENDS+= security-framework-sys-2.11.0
CARGO_CRATE_DEPENDS+= semver-1.0.23
CARGO_CRATE_DEPENDS+= serde-1.0.202
CARGO_CRATE_DEPENDS+= serde_derive-1.0.202
CARGO_CRATE_DEPENDS+= serde_json-1.0.117
CARGO_CRATE_DEPENDS+= serde-1.0.204
CARGO_CRATE_DEPENDS+= serde_derive-1.0.204
CARGO_CRATE_DEPENDS+= serde_json-1.0.120
CARGO_CRATE_DEPENDS+= serde_json_path-0.6.7
CARGO_CRATE_DEPENDS+= serde_json_path_core-0.1.6
CARGO_CRATE_DEPENDS+= serde_json_path_macros-0.1.4
Expand All @@ -205,32 +220,32 @@ CARGO_CRATE_DEPENDS+= serde_urlencoded-0.7.1
CARGO_CRATE_DEPENDS+= serde_yaml-0.9.34+deprecated
CARGO_CRATE_DEPENDS+= sharded-slab-0.1.7
CARGO_CRATE_DEPENDS+= shell-words-1.1.0
CARGO_CRATE_DEPENDS+= shellish_parse-2.2.0
CARGO_CRATE_DEPENDS+= signal-hook-0.3.17
CARGO_CRATE_DEPENDS+= signal-hook-mio-0.2.3
CARGO_CRATE_DEPENDS+= signal-hook-mio-0.2.4
CARGO_CRATE_DEPENDS+= signal-hook-registry-1.4.2
CARGO_CRATE_DEPENDS+= slab-0.4.9
CARGO_CRATE_DEPENDS+= smallvec-1.13.2
CARGO_CRATE_DEPENDS+= socket2-0.5.7
CARGO_CRATE_DEPENDS+= spin-0.9.8
CARGO_CRATE_DEPENDS+= stability-0.2.0
CARGO_CRATE_DEPENDS+= static_assertions-1.1.0
CARGO_CRATE_DEPENDS+= str-buf-1.0.6
CARGO_CRATE_DEPENDS+= strsim-0.11.1
CARGO_CRATE_DEPENDS+= strum-0.26.2
CARGO_CRATE_DEPENDS+= strum_macros-0.26.2
CARGO_CRATE_DEPENDS+= strum-0.26.3
CARGO_CRATE_DEPENDS+= strum_macros-0.26.4
CARGO_CRATE_DEPENDS+= subtle-2.5.0
CARGO_CRATE_DEPENDS+= syn-1.0.109
CARGO_CRATE_DEPENDS+= syn-2.0.65
CARGO_CRATE_DEPENDS+= sync_wrapper-0.1.2
CARGO_CRATE_DEPENDS+= sync_wrapper-1.0.1
CARGO_CRATE_DEPENDS+= tempfile-3.10.1
CARGO_CRATE_DEPENDS+= thiserror-1.0.61
CARGO_CRATE_DEPENDS+= thiserror-impl-1.0.61
CARGO_CRATE_DEPENDS+= thiserror-1.0.63
CARGO_CRATE_DEPENDS+= thiserror-impl-1.0.63
CARGO_CRATE_DEPENDS+= thread_local-1.1.8
CARGO_CRATE_DEPENDS+= tinyvec-1.6.0
CARGO_CRATE_DEPENDS+= tinyvec_macros-0.1.1
CARGO_CRATE_DEPENDS+= tokio-1.37.0
CARGO_CRATE_DEPENDS+= tokio-macros-2.2.0
CARGO_CRATE_DEPENDS+= tokio-rustls-0.25.0
CARGO_CRATE_DEPENDS+= tokio-1.39.2
CARGO_CRATE_DEPENDS+= tokio-macros-2.4.0
CARGO_CRATE_DEPENDS+= tokio-rustls-0.26.0
CARGO_CRATE_DEPENDS+= tokio-util-0.7.11
CARGO_CRATE_DEPENDS+= tower-0.4.13
CARGO_CRATE_DEPENDS+= tower-layer-0.3.2
Expand All @@ -239,23 +254,28 @@ CARGO_CRATE_DEPENDS+= tracing-0.1.40
CARGO_CRATE_DEPENDS+= tracing-attributes-0.1.27
CARGO_CRATE_DEPENDS+= tracing-core-0.1.32
CARGO_CRATE_DEPENDS+= tracing-subscriber-0.3.18
CARGO_CRATE_DEPENDS+= tree-sitter-0.22.6
CARGO_CRATE_DEPENDS+= tree-sitter-highlight-0.22.6
CARGO_CRATE_DEPENDS+= tree-sitter-json-0.21.0
CARGO_CRATE_DEPENDS+= tree_magic_mini-3.1.4
CARGO_CRATE_DEPENDS+= try-lock-0.2.5
CARGO_CRATE_DEPENDS+= unarray-0.1.4
CARGO_CRATE_DEPENDS+= unicase-2.7.0
CARGO_CRATE_DEPENDS+= unicode-bidi-0.3.15
CARGO_CRATE_DEPENDS+= unicode-ident-1.0.12
CARGO_CRATE_DEPENDS+= unicode-normalization-0.1.23
CARGO_CRATE_DEPENDS+= unicode-segmentation-1.11.0
CARGO_CRATE_DEPENDS+= unicode-truncate-1.0.0
CARGO_CRATE_DEPENDS+= unicode-width-0.1.12
CARGO_CRATE_DEPENDS+= unicode-width-0.1.13
CARGO_CRATE_DEPENDS+= unicode-xid-0.2.4
CARGO_CRATE_DEPENDS+= unsafe-libyaml-0.2.11
CARGO_CRATE_DEPENDS+= untrusted-0.9.0
CARGO_CRATE_DEPENDS+= url-2.5.0
CARGO_CRATE_DEPENDS+= url-2.5.2
CARGO_CRATE_DEPENDS+= utf8parse-0.2.1
CARGO_CRATE_DEPENDS+= uuid-1.8.0
CARGO_CRATE_DEPENDS+= uuid-1.10.0
CARGO_CRATE_DEPENDS+= vcpkg-0.2.15
CARGO_CRATE_DEPENDS+= version_check-0.9.4
CARGO_CRATE_DEPENDS+= wait-timeout-0.2.0
CARGO_CRATE_DEPENDS+= walkdir-2.5.0
CARGO_CRATE_DEPENDS+= want-0.3.1
CARGO_CRATE_DEPENDS+= wasi-0.11.0+wasi-snapshot-preview1
Expand Down Expand Up @@ -297,9 +317,9 @@ CARGO_CRATE_DEPENDS+= windows_x86_64_gnullvm-0.48.5
CARGO_CRATE_DEPENDS+= windows_x86_64_gnullvm-0.52.5
CARGO_CRATE_DEPENDS+= windows_x86_64_msvc-0.48.5
CARGO_CRATE_DEPENDS+= windows_x86_64_msvc-0.52.5
CARGO_CRATE_DEPENDS+= winnow-0.6.13
CARGO_CRATE_DEPENDS+= winnow-0.6.16
CARGO_CRATE_DEPENDS+= winreg-0.52.0
CARGO_CRATE_DEPENDS+= wiremock-0.6.0
CARGO_CRATE_DEPENDS+= wiremock-0.6.1
CARGO_CRATE_DEPENDS+= wl-clipboard-rs-0.7.0
CARGO_CRATE_DEPENDS+= x11-clipboard-0.7.1
CARGO_CRATE_DEPENDS+= x11rb-0.10.1
Expand Down
Loading

0 comments on commit d2581c4

Please sign in to comment.