zoxide-0.9.4/.cargo/config.toml 0000644 0000000 0000000 00000000400 10461020230 0014445 0 ustar 0000000 0000000 [alias] xtask = "run --package xtask --" # On Windows MSVC, statically link the C runtime so that the resulting EXE does # not depend on the vcruntime DLL. [target.'cfg(all(windows, target_env = "msvc"))'] rustflags = ["-C", "target-feature=+crt-static"] zoxide-0.9.4/.cargo_vcs_info.json 0000644 00000000136 00000000001 0012350 0 ustar { "git": { "sha1": "418a78d348445ddca0e15b1e95c4f17e4c628b19" }, "path_in_vcs": "" } zoxide-0.9.4/.deepsource.toml 0000644 0000000 0000000 00000000154 10461020230 0014251 0 ustar 0000000 0000000 version = 1 [[analyzers]] name = "rust" [analyzers.meta] msrv = "stable" [[analyzers]] name = "shell" zoxide-0.9.4/.gitattributes 0000644 0000000 0000000 00000000314 10461020230 0014031 0 ustar 0000000 0000000 /contrib/completions/* eol=lf linguist-generated=true text /contrib/completions/README.md -eol -linguist-generated -text /init.fish eol=lf text /templates/*.txt eol=lf text /zoxide.plugin.zsh eol=lf text zoxide-0.9.4/.github/CODE_OF_CONDUCT.md 0000644 0000000 0000000 00000012142 10461020230 0015277 0 ustar 0000000 0000000 # Contributor Covenant Code of Conduct ## Our Pledge We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. ## Our Standards Examples of behavior that contributes to a positive environment for our community include: - Demonstrating empathy and kindness toward other people - Being respectful of differing opinions, viewpoints, and experiences - Giving and gracefully accepting constructive feedback - Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience - Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: - The use of sexualized language or imagery, and sexual attention or advances of any kind - Trolling, insulting or derogatory comments, and personal or political attacks - Public or private harassment - Publishing others' private information, such as a physical or email address, without their explicit permission - Other conduct which could reasonably be considered inappropriate in a professional setting ## Enforcement Responsibilities Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. ## Scope This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at 98ajeet@gmail.com. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident. ## Enforcement Guidelines Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: ### 1. Correction **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. ### 2. Warning **Community Impact**: A violation through a single incident or series of actions. **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. ### 3. Temporary Ban **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. ### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within the community. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). [homepage]: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. zoxide-0.9.4/.github/dependabot.yml 0000644 0000000 0000000 00000000160 10461020230 0015325 0 ustar 0000000 0000000 version: 2 updates: - package-ecosystem: github-actions directory: / schedule: interval: weekly zoxide-0.9.4/.github/workflows/ci.yml 0000644 0000000 0000000 00000002656 10461020230 0015664 0 ustar 0000000 0000000 name: ci on: push: branches: [main] pull_request: workflow_dispatch: env: CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }} CARGO_INCREMENTAL: 0 CARGO_TERM_COLOR: always permissions: contents: read jobs: ci: name: ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest] steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: actions-rs/toolchain@v1 if: ${{ matrix.os == 'windows-latest' }} with: components: clippy profile: minimal toolchain: stable - uses: actions-rs/toolchain@v1 if: ${{ matrix.os == 'windows-latest' }} with: components: rustfmt profile: minimal toolchain: nightly - uses: cachix/install-nix-action@v25 if: ${{ matrix.os != 'windows-latest' }} with: nix_path: nixpkgs=channel:nixos-unstable - uses: cachix/cachix-action@v14 if: ${{ matrix.os != 'windows-latest' && env.CACHIX_AUTH_TOKEN != '' }} with: authToken: ${{ env.CACHIX_AUTH_TOKEN }} name: zoxide - name: Setup cache uses: Swatinem/rust-cache@v2.7.3 with: key: ${{ matrix.os }} - name: Install just uses: taiki-e/install-action@v2 with: tool: just - name: Run lints + tests run: just lint test zoxide-0.9.4/.github/workflows/no-response.yml 0000644 0000000 0000000 00000001147 10461020230 0017533 0 ustar 0000000 0000000 name: no-response on: issue_comment: types: [created] schedule: - cron: "0 0 * * *" # daily at 00:00 jobs: no-response: if: github.repository == 'ajeetdsouza/zoxide' permissions: issues: write runs-on: ubuntu-latest steps: - uses: lee-dohm/no-response@v0.5.0 with: token: ${{ github.token }} daysUntilClose: 30 responseRequiredLabel: waiting-for-response closeComment: > This issue has been automatically closed due to inactivity. If you feel this is still relevant, please comment here or create a fresh issue. zoxide-0.9.4/.github/workflows/release.yml 0000644 0000000 0000000 00000006406 10461020230 0016706 0 ustar 0000000 0000000 name: release on: push: workflow_dispatch: env: CARGO_INCREMENTAL: 0 permissions: contents: write jobs: release: name: ${{ matrix.target }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: include: - os: ubuntu-latest target: x86_64-unknown-linux-musl deb: true - os: ubuntu-latest target: arm-unknown-linux-musleabihf - os: ubuntu-latest target: armv7-unknown-linux-musleabihf - os: ubuntu-latest target: aarch64-unknown-linux-musl deb: true - os: macos-11 target: x86_64-apple-darwin - os: macos-11 target: aarch64-apple-darwin - os: windows-latest target: x86_64-pc-windows-msvc - os: windows-latest target: aarch64-pc-windows-msvc steps: - name: Checkout repository uses: actions/checkout@v4 with: fetch-depth: 0 - name: Get version id: get_version uses: SebRollen/toml-action@v1.2.0 with: file: Cargo.toml field: package.version - name: Install Rust uses: actions-rs/toolchain@v1 with: toolchain: stable profile: minimal override: true target: ${{ matrix.target }} - name: Setup cache uses: Swatinem/rust-cache@v2.7.3 with: key: ${{ matrix.target }} - name: Build binary uses: actions-rs/cargo@v1 with: command: build args: --release --locked --target=${{ matrix.target }} --color=always --verbose use-cross: ${{ runner.os == 'Linux' }} - name: Install cargo-deb if: ${{ matrix.deb == true }} uses: actions-rs/install@v0.1 with: crate: cargo-deb - name: Build deb if: ${{ matrix.deb == true }} uses: actions-rs/cargo@v1 with: command: deb args: --no-build --no-strip --output=. --target=${{ matrix.target }} - name: Package (*nix) if: runner.os != 'Windows' run: | tar -cv CHANGELOG.md LICENSE README.md man/ \ -C contrib/ completions/ -C ../ \ -C target/${{ matrix.target }}/release/ zoxide | gzip --best > \ zoxide-${{ steps.get_version.outputs.value }}-${{ matrix.target }}.tar.gz - name: Package (Windows) if: runner.os == 'Windows' run: | 7z a zoxide-${{ steps.get_version.outputs.value }}-${{ matrix.target }}.zip ` CHANGELOG.md LICENSE README.md ./man/ ./contrib/completions/ ` ./target/${{ matrix.target }}/release/zoxide.exe - name: Upload artifact uses: actions/upload-artifact@v4 with: name: ${{ matrix.target }} path: | *.deb *.tar.gz *.zip - name: Create release if: | github.ref == 'refs/heads/main' && startsWith(github.event.head_commit.message, 'chore(release)') uses: softprops/action-gh-release@v1 with: draft: true files: | *.deb *.tar.gz *.zip name: ${{ steps.get_version.outputs.value }} tag_name: "" zoxide-0.9.4/.github/workflows/winget.yml 0000644 0000000 0000000 00000000464 10461020230 0016561 0 ustar 0000000 0000000 name: winget on: release: types: [released] jobs: publish: runs-on: ubuntu-latest steps: - uses: vedantmgoyal2009/winget-releaser@v2 with: identifier: ajeetdsouza.zoxide installers-regex: '-pc-windows-msvc\.zip$' token: ${{ secrets.WINGET_TOKEN }} zoxide-0.9.4/.gitignore 0000644 0000000 0000000 00000000257 10461020230 0013134 0 ustar 0000000 0000000 ### Custom ### .vscode/ ### Rust ### # Compiled files and executables debug/ target/ target_nix/ # Backup files generated by rustfmt **/*.rs.bk ### Python ### .mypy_cache/ zoxide-0.9.4/CHANGELOG.md 0000644 0000000 0000000 00000031716 10461020230 0012761 0 ustar 0000000 0000000 # Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [0.9.4] - 2024-02-21 ### Changed - zsh: improved Space-Tab completions. ## [0.9.3] - 2024-02-13 ### Added - Nushell: support for v0.89.0. ## [0.9.2] - 2023-08-04 ### Added - Short option `-a` for `zoxide query --all`. ### Fixed - PowerShell: use `global` scope for variables / functions. ## [0.9.1] - 2023-05-07 ### Added - Fish/Zsh: aliases on `__zoxide_z` will now use completions. - Nushell: support for v0.78.0. - Fish: plugin now works on older versions. - PowerShell: warn when PowerShell version is too old for `z -` and `z +`. - PowerShell: support for PWD hooks on all versions. ### Fixed - Fish: not providing `cd` completions when there is a space in the path. - Bash/Fish/Zsh: providing `z` completions when the last argument starts with `z!`. - Bash/Fish/Zsh: attempting to `cd` when the last argument is `z!`. ## [0.9.0] - 2023-01-08 ### Added - `edit` subcommand to adjust the scores of entries. ### Fixed - Zsh: completions clashing with `zsh-autocomplete`. - Fzf: 'invalid option' on macOS. - PowerShell: handle UTF-8 encoding correctly. - Zsh: don't hide output from `chpwd` hooks. - Nushell: upgrade minimum supported version to v0.73.0. - Zsh: fix extra space in interactive completions when no match is found. - Fzf: various improvements, upgrade minimum supported version to v0.33.0. - Nushell: accidental redefinition of hooks when initialized twice. ### Removed - `remove -i` subcommand: use `edit` instead. ## [0.8.3] - 2022-09-02 ### Added - Nushell: support for `z -`. - Nushell: support for PWD hooks. ### Changed - Fish: change fuzzy completion prefix to `z!`. - Zsh: allow `z` to navigate dirstack via `+n` and `-n`. - Fzf: improved preview window. ### Fixed - Bash: double forward slash in completions. ## [0.8.2] - 2022-06-26 ### Changed - Fzf: show preview window below results. ### Fixed - Bash/Fish/POSIX/Zsh: paths on Cygwin. - Fish: completions not working on certain systems. - Bash: completions not escaping spaces correctly. ## [0.8.1] - 2021-04-23 ### Changed - Manpages: moved to `man/man1/*.1`. - Replace `--no-aliases` with `--no-cmd`. - Elvish: upgrade minimum supported version to v0.18.0. - Nushell: upgrade minimum supported version to v0.61.0. ### Fixed - Bash/Zsh: rename `_z` completion function to avoid conflicts with other shell plugins. - Fzf: added `--keep-right` option by default, upgrade minimum supported version to v0.21.0. - Bash: only enable completions on 4.4+. - Fzf: bypass `ls` alias in preview window. - Retain ownership of database file. - `zoxide query --interactive` should not conflict with `--score`. ## [0.8.0] - 2021-12-25 ### Added - Zsh: completions for `z` command. ### Changed - Fzf: better default options. - Fish: interactive completions are only triggered when the last argument is empty. - PowerShell: installation instructions. ### Fixed - PowerShell: use global scope for aliases. - Zsh: fix errors with `set -eu`. - Fzf: handle early selection. - PowerShell: correctly handle escape characters in paths. - Parse error on Cygwin/MSYS due to CRLF line endings. - Fzf: handle spaces correctly in preview window. - Bash: avoid initializing completions on older versions. - Fzf: avoid launching binary from current directory on Windows. ## [0.7.9] - 2021-11-02 ### Changed - Bash/Fish: improved completions for `z` command. ### Fixed - Fish: error erasing completions on older versions. - PowerShell: enable `--cmd cd` to replace the `cd` command. ## [0.7.8] - 2021-10-21 ### Added - Auto-generated completions for [Fig](https://fig.io/). ### Fixed - Compile error with `clap v3.0.0-beta.5`. ## [0.7.7] - 2021-10-15 ### Fixed - PowerShell: hook not initializing correctly. ## [0.7.6] - 2021-10-13 ### Changed - Nushell: upgrade minimum supported version to v0.37.0. ### Fixed - Xonsh: error messages in `zi`. - Xonsh: configuration environment variables not being handled correctly. ## [0.7.5] - 2021-09-09 ### Added - Bash/Elvish: completions for `z` command. ### Changed - Nushell: upgrade minimum supported version to v0.36.0. - Nushell: easier installation instructions. ### Fixed - Elvish: unable to `z` into directories by path. - Elvish: don't show traceback when `z` or `zi` fails. - Elvish: nested shells do not initialize correctly. ## [0.7.4] - 2021-08-15 ### Fixed - Compile error with `clap v3.0.0-beta.4`. ## [0.7.3] - 2021-08-05 ### Added - `zoxide add` and `zoxide remove` now accept multiple arguments. ### Fixed - Nushell: errors on 0.33.0. - PowerShell: errors when initializing in `StrictMode`. - Bash/POSIX: remove conflicting alias definitions when initializing. - Bash: remove extra semicolon when setting `$PROMPT_COMMAND`. - Xonsh: use shell environment instead of `os.environ`. ## [0.7.2] - 2021-06-10 ### Fixed - `zoxide -V` not printing version. ## [0.7.1] - 2021-06-09 ### Added - Auto-generated shell completions. - `zoxide query --all` for listing deleted directories. - Lazy deletion for removed directories that have not been accessed in > 90 days. - Nushell: support for 0.32.0+. ### Fixed - Nushell: avoid calling `__zoxide_hook` on non-filesystem subshells. - Fish: `alias cd=z` now works, but it must be done after calling `zoxide init`. - PowerShell: avoid calling `__zoxide_hook` on non-filesystem providers. - Fish: avoid calling `__zoxide_hook` in private mode. ## [0.7.0] - 2021-05-02 ### Added - Manpages for all subcommands. - Default prompt for Nushell. ### Changed - `zoxide remove -i` now accepts multiple selections. - `zoxide add` no longer accepts zero parameters. - `$_ZO_EXCLUDE_DIRS` now defaults to `"$HOME"`. - Binary releases now use `.zip` on Windows, `.tar.gz` otherwise. ### Fixed - `cd -` on fish shells. - `__zoxide_hook` no longer changes value of `$?` within `$PROMPT_COMMAND` on bash. ### Removed - GitHub install script. - Release binaries built with `glibc`, use `musl` instead. ## [0.6.0] - 2021-04-09 ### Added - Support for [Nushell](https://www.nushell.sh/). - Support for [Elvish](https://elv.sh/). ### Changed - `z` now excludes the current directory from search results. ### Fixed - Removed backtraces on Rust nightly. - Generated shell code avoids using aliased builtins. - Handle broken pipe errors gracefully when writing to streams. - NUL file appearing in working directory on Windows. - Accidental redefinition of hooks when initialized twice on some shells. - zoxide unable to find itself on Xonsh shells. ### Removed - Aliases: `za`, `zq`, `zqi`, `zr`, `zri`. These are trivial aliases that can easily be defined manually, and aren't very useful to most users. ## [0.5.0] - 2020-10-30 ### Added - `$_ZO_EXCLUDE_DIRS` now supports globs. - `zoxide init` now defines `__zoxide_z*` functions that can be aliased as needed. - Support for the [xonsh](https://xon.sh/) shell. - `zoxide import` can now import from Autojump. ### Changed - `zoxide init --no-aliases` no longer generates `z` or `zi`. ### Fixed - Clobber conflicting alias definitions in bash/fish/zsh/POSIX shells. ### Removed - Deprecated PWD hooks for POSIX shells. - Lazy deletion for inaccessible directories. ## [0.4.3] - 2020-07-04 ### Fixed - Bug in Fish init script ## [0.4.2] - 2020-07-03 ### Added - `$_ZO_FZF_OPTS` to specify custom options for `fzf` - `zoxide query --list` to list all matches - `zoxide query --score` to show score along with result ### Changed - Increased default value of `$_ZO_MAXAGE` to `10000`. - Symlinks are treated as separate directories by default, this can be changed by setting `_ZO_RESOLVE_SYMLINKS=1`. ### Removed - Help menus for `z` and `zri`. - `zoxide remove -i` is replaced with `zri`. ## [0.4.1] - 2020-05-25 ### Added - Support for powershell. ### Removed - Backward compatibility with `v0.2.x` databases. - Support for paths with invalid UTF-8. ## [0.4.0] - 2020-05-03 ### Added - Interactive mode for removing entries (`zoxide remove -i`). - Aliases for interactive `query` and `remove` (`zqi` and `zri` respectively). - PWD hooks for POSIX shells. ### Changed - `zoxide remove` now throws an error if there was no match in the database. - Interactive mode in `zoxide` no longer errors out if `fzf` exits gracefully. - Canonicalize to regular paths instead of UNC paths on Windows. - `zoxide init` now uses PWD hooks by default for better performance. - `$_ZO_ECHO` now only works when set to `1`. - Using the `--z-cmd` flag now also renames the associated aliases. - The `--z-cmd` flag has been renamed to `--cmd`. - The `--no-define-aliases` flag has been renamed to `--no-aliases`. ### Fixed - fish no longer `cd`s to the user's home when no match is found. ## [0.3.1] - 2020-04-03 ### Added - Version output displays `git` revision information. - `--z-cmd` flag for `zoxide init` to rename the `z` command to something else. ### Changed - `zoxide query` output no longer has the `query:` prefix. ### Fixed - Queries now also include checks for if the top level directory matches. ## [0.3.0] - 2020-03-30 ### Added - Automatic migration from `v0.2.x` databases. - `$_ZO_EXCLUDE_DIRS` to prevent directories from being added to the database. - Support for POSIX-compliant shells. ### Changed - Database location defaults to user's local data directory. - Database schema now includes a version number. - `migrate` subcommand renamed to `import`. ### Fixed - Thread safety using unique tempfile names for each `zoxide` instance. - Incomprehensive "could not allocate" message on database corruption. ## [0.2.2] - 2020-03-20 ### Fixed - Incorrect exit codes in `z` command on fish. ### Removed - File locks on database. ## [0.2.1] - 2020-03-16 ### Added - `$_ZO_ECHO` to echo match before `cd`ing. - Minimal `ranger` plugin. - PWD hook to only update the database when the current directory is changed. - Support for bash. - `migrate` subcommand to allow users to migrate from `z`. ### Fixed - Interactive queries causing other open shells to hang. ## [0.2.0] - 2020-03-11 ### Added - `init` subcommand to remove dependency on shell plugin managers. - Support for `z -` command to go to previous directory. - `Cargo.lock` for more reproducible builds. - Support for the fish shell. ### Fixed - `_zoxide_precmd` overriding other precmd hooks on zsh. ## [0.1.1] - 2020-03-08 ### Added - Install script for Linux/macOS users. - Aging algorithm to remove stale entries. ### Changed - Database schema now uses `f64` values for rank instead of `i32`. ### Fixed - Multiple hooks being added upon initializing `zoxide` multiple times. ## [0.1.0] - 2020-03-05 ### Added - GitHub Actions pipeline to build and upload releases. - Support for zsh. [0.9.4]: https://github.com/ajeetdsouza/zoxide/compare/v0.9.3...v0.9.4 [0.9.3]: https://github.com/ajeetdsouza/zoxide/compare/v0.9.2...v0.9.3 [0.9.2]: https://github.com/ajeetdsouza/zoxide/compare/v0.9.1...v0.9.2 [0.9.1]: https://github.com/ajeetdsouza/zoxide/compare/v0.9.0...v0.9.1 [0.9.0]: https://github.com/ajeetdsouza/zoxide/compare/v0.8.3...v0.9.0 [0.8.3]: https://github.com/ajeetdsouza/zoxide/compare/v0.8.2...v0.8.3 [0.8.2]: https://github.com/ajeetdsouza/zoxide/compare/v0.8.1...v0.8.2 [0.8.1]: https://github.com/ajeetdsouza/zoxide/compare/v0.8.0...v0.8.1 [0.8.0]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.9...v0.8.0 [0.7.9]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.8...v0.7.9 [0.7.8]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.7...v0.7.8 [0.7.7]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.6...v0.7.7 [0.7.6]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.5...v0.7.6 [0.7.5]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.4...v0.7.5 [0.7.4]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.3...v0.7.4 [0.7.3]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.2...v0.7.3 [0.7.2]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.1...v0.7.2 [0.7.1]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.0...v0.7.1 [0.7.0]: https://github.com/ajeetdsouza/zoxide/compare/v0.6.0...v0.7.0 [0.6.0]: https://github.com/ajeetdsouza/zoxide/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/ajeetdsouza/zoxide/compare/v0.4.3...v0.5.0 [0.4.3]: https://github.com/ajeetdsouza/zoxide/compare/v0.4.2...v0.4.3 [0.4.2]: https://github.com/ajeetdsouza/zoxide/compare/v0.4.1...v0.4.2 [0.4.1]: https://github.com/ajeetdsouza/zoxide/compare/v0.4.0...v0.4.1 [0.4.0]: https://github.com/ajeetdsouza/zoxide/compare/v0.3.1...v0.4.0 [0.3.1]: https://github.com/ajeetdsouza/zoxide/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/ajeetdsouza/zoxide/compare/v0.2.2...v0.3.0 [0.2.2]: https://github.com/ajeetdsouza/zoxide/compare/v0.2.1...v0.2.2 [0.2.1]: https://github.com/ajeetdsouza/zoxide/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/ajeetdsouza/zoxide/compare/v0.1.1...v0.2.0 [0.1.1]: https://github.com/ajeetdsouza/zoxide/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/ajeetdsouza/zoxide/commits/v0.1.0 zoxide-0.9.4/Cargo.lock 0000644 00000062634 00000000001 0010336 0 ustar # This file is automatically @generated by Cargo. # It is not intended for manual editing. version = 3 [[package]] name = "aho-corasick" version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" dependencies = [ "memchr", ] [[package]] name = "aliasable" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" [[package]] name = "anstream" version = "0.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96b09b5178381e0874812a9b157f7fe84982617e48f71f4e3235482775e5b540" dependencies = [ "anstyle", "anstyle-parse", "anstyle-query", "anstyle-wincon", "colorchoice", "utf8parse", ] [[package]] name = "anstyle" version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" [[package]] name = "anstyle-parse" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" dependencies = [ "windows-sys 0.52.0", ] [[package]] name = "anstyle-wincon" version = "3.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" dependencies = [ "anstyle", "windows-sys 0.52.0", ] [[package]] name = "anyhow" version = "1.0.80" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ad32ce52e4161730f7098c077cd2ed6229b5804ccf99e5366be1ab72a98b4e1" [[package]] name = "askama" version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28" dependencies = [ "askama_derive", "askama_escape", ] [[package]] name = "askama_derive" version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83" dependencies = [ "askama_parser", "mime", "mime_guess", "proc-macro2", "quote", "syn 2.0.50", ] [[package]] name = "askama_escape" version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" [[package]] name = "askama_parser" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0" dependencies = [ "nom", ] [[package]] name = "assert_cmd" version = "2.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed72493ac66d5804837f480ab3766c72bdfab91a65e565fc54fa9e42db0073a8" dependencies = [ "anstyle", "bstr", "doc-comment", "predicates", "predicates-core", "predicates-tree", "wait-timeout", ] [[package]] name = "bincode" version = "1.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" dependencies = [ "serde", ] [[package]] name = "bitflags" version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" version = "2.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" [[package]] name = "bstr" version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc" dependencies = [ "memchr", "regex-automata", "serde", ] [[package]] name = "cfg-if" version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" version = "4.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c918d541ef2913577a0f9566e9ce27cb35b6df072075769e0b26cb5a554520da" dependencies = [ "clap_builder", "clap_derive", ] [[package]] name = "clap_builder" version = "4.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f3e7391dad68afb0c2ede1bf619f579a3dc9c2ec67f089baa397123a2f3d1eb" dependencies = [ "anstream", "anstyle", "clap_lex", "strsim", ] [[package]] name = "clap_complete" version = "4.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "885e4d7d5af40bfb99ae6f9433e292feac98d452dcb3ec3d25dfe7552b77da8c" dependencies = [ "clap", ] [[package]] name = "clap_complete_fig" version = "4.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "54b3e65f91fabdd23cac3d57d39d5d938b4daabd070c335c006dccb866a61110" dependencies = [ "clap", "clap_complete", ] [[package]] name = "clap_derive" version = "4.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "307bc0538d5f0f83b8248db3087aa92fe504e4691294d0c96c0eabc33f47ba47" dependencies = [ "heck", "proc-macro2", "quote", "syn 2.0.50", ] [[package]] name = "clap_lex" version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" [[package]] name = "color-print" version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a858372ff14bab9b1b30ea504f2a4bc534582aee3e42ba2d41d2a7baba63d5d" dependencies = [ "color-print-proc-macro", ] [[package]] name = "color-print-proc-macro" version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57e37866456a721d0a404439a1adae37a31be4e0055590d053dfe6981e05003f" dependencies = [ "nom", "proc-macro2", "quote", "syn 1.0.109", ] [[package]] name = "colorchoice" version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "difflib" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" [[package]] name = "dirs" version = "5.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" dependencies = [ "dirs-sys", ] [[package]] name = "dirs-sys" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" dependencies = [ "libc", "option-ext", "redox_users", "windows-sys 0.48.0", ] [[package]] name = "doc-comment" version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" [[package]] name = "dunce" version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" [[package]] name = "either" version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" [[package]] name = "errno" version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" dependencies = [ "libc", "windows-sys 0.52.0", ] [[package]] name = "fastrand" version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" [[package]] name = "getrandom" version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" dependencies = [ "cfg-if", "libc", "wasi", ] [[package]] name = "glob" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" [[package]] name = "heck" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" [[package]] name = "home" version = "0.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" dependencies = [ "windows-sys 0.52.0", ] [[package]] name = "itertools" version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" dependencies = [ "either", ] [[package]] name = "libc" version = "0.2.153" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" [[package]] name = "libredox" version = "0.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" dependencies = [ "bitflags 2.4.2", "libc", "redox_syscall", ] [[package]] name = "linux-raw-sys" version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" [[package]] name = "memchr" version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" [[package]] name = "mime" version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "mime_guess" version = "2.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" dependencies = [ "mime", "unicase", ] [[package]] name = "minimal-lexical" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "nix" version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" dependencies = [ "bitflags 2.4.2", "cfg-if", "libc", ] [[package]] name = "nom" version = "7.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" dependencies = [ "memchr", "minimal-lexical", ] [[package]] name = "once_cell" version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "option-ext" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "ouroboros" version = "0.18.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97b7be5a8a3462b752f4be3ff2b2bf2f7f1d00834902e46be2a4d68b87b0573c" dependencies = [ "aliasable", "ouroboros_macro", "static_assertions", ] [[package]] name = "ouroboros_macro" version = "0.18.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b645dcde5f119c2c454a92d0dfa271a2a3b205da92e4292a68ead4bdbfde1f33" dependencies = [ "heck", "itertools", "proc-macro2", "proc-macro2-diagnostics", "quote", "syn 2.0.50", ] [[package]] name = "ppv-lite86" version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "predicates" version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68b87bfd4605926cdfefc1c3b5f8fe560e3feca9d5552cf68c466d3d8236c7e8" dependencies = [ "anstyle", "difflib", "predicates-core", ] [[package]] name = "predicates-core" version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" [[package]] name = "predicates-tree" version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" dependencies = [ "predicates-core", "termtree", ] [[package]] name = "proc-macro2" version = "1.0.78" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" dependencies = [ "unicode-ident", ] [[package]] name = "proc-macro2-diagnostics" version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" dependencies = [ "proc-macro2", "quote", "syn 2.0.50", "version_check", "yansi", ] [[package]] name = "quote" version = "1.0.35" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" dependencies = [ "proc-macro2", ] [[package]] name = "rand" version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ "libc", "rand_chacha", "rand_core", ] [[package]] name = "rand_chacha" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ "ppv-lite86", "rand_core", ] [[package]] name = "rand_core" version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ "getrandom", ] [[package]] name = "redox_syscall" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" dependencies = [ "bitflags 1.3.2", ] [[package]] name = "redox_users" version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" dependencies = [ "getrandom", "libredox", "thiserror", ] [[package]] name = "regex" version = "1.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" dependencies = [ "aho-corasick", "memchr", "regex-automata", "regex-syntax", ] [[package]] name = "regex-automata" version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" dependencies = [ "aho-corasick", "memchr", "regex-syntax", ] [[package]] name = "regex-syntax" version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "relative-path" version = "1.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e898588f33fdd5b9420719948f9f2a32c922a246964576f71ba7f24f80610fbc" [[package]] name = "rstest" version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199" dependencies = [ "rstest_macros", "rustc_version", ] [[package]] name = "rstest_macros" version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605" dependencies = [ "cfg-if", "glob", "proc-macro2", "quote", "regex", "relative-path", "rustc_version", "syn 2.0.50", "unicode-ident", ] [[package]] name = "rstest_reuse" version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "88530b681abe67924d42cca181d070e3ac20e0740569441a9e35a7cedd2b34a4" dependencies = [ "quote", "rand", "rustc_version", "syn 2.0.50", ] [[package]] name = "rustc_version" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" dependencies = [ "semver", ] [[package]] name = "rustix" version = "0.38.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" dependencies = [ "bitflags 2.4.2", "errno", "libc", "linux-raw-sys", "windows-sys 0.52.0", ] [[package]] name = "semver" version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" [[package]] name = "serde" version = "1.0.197" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" version = "1.0.197" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" dependencies = [ "proc-macro2", "quote", "syn 2.0.50", ] [[package]] name = "static_assertions" version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "strsim" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" [[package]] name = "syn" version = "1.0.109" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" dependencies = [ "proc-macro2", "quote", "unicode-ident", ] [[package]] name = "syn" version = "2.0.50" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74f1bdc9872430ce9b75da68329d1c1746faf50ffac5f19e02b71e37ff881ffb" dependencies = [ "proc-macro2", "quote", "unicode-ident", ] [[package]] name = "tempfile" version = "3.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a365e8cd18e44762ef95d87f284f4b5cd04107fec2ff3052bd6a3e6069669e67" dependencies = [ "cfg-if", "fastrand", "rustix", "windows-sys 0.52.0", ] [[package]] name = "termtree" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "thiserror" version = "1.0.57" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" version = "1.0.57" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81" dependencies = [ "proc-macro2", "quote", "syn 2.0.50", ] [[package]] name = "unicase" version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" dependencies = [ "version_check", ] [[package]] name = "unicode-ident" version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" [[package]] name = "utf8parse" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "version_check" version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "wait-timeout" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" dependencies = [ "libc", ] [[package]] name = "wasi" version = "0.11.0+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "which" version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7fa5e0c10bf77f44aac573e498d1a82d5fbd5e91f6fc0a99e7be4b38e85e101c" dependencies = [ "either", "home", "once_cell", "rustix", "windows-sys 0.52.0", ] [[package]] name = "windows-sys" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" dependencies = [ "windows-targets 0.48.5", ] [[package]] name = "windows-sys" version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ "windows-targets 0.52.0", ] [[package]] name = "windows-targets" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" dependencies = [ "windows_aarch64_gnullvm 0.48.5", "windows_aarch64_msvc 0.48.5", "windows_i686_gnu 0.48.5", "windows_i686_msvc 0.48.5", "windows_x86_64_gnu 0.48.5", "windows_x86_64_gnullvm 0.48.5", "windows_x86_64_msvc 0.48.5", ] [[package]] name = "windows-targets" version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" dependencies = [ "windows_aarch64_gnullvm 0.52.0", "windows_aarch64_msvc 0.52.0", "windows_i686_gnu 0.52.0", "windows_i686_msvc 0.52.0", "windows_x86_64_gnu 0.52.0", "windows_x86_64_gnullvm 0.52.0", "windows_x86_64_msvc 0.52.0", ] [[package]] name = "windows_aarch64_gnullvm" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" [[package]] name = "windows_aarch64_gnullvm" version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" [[package]] name = "windows_aarch64_msvc" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" [[package]] name = "windows_aarch64_msvc" version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" [[package]] name = "windows_i686_gnu" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" [[package]] name = "windows_i686_gnu" version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" [[package]] name = "windows_i686_msvc" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" [[package]] name = "windows_i686_msvc" version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" [[package]] name = "windows_x86_64_gnu" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" [[package]] name = "windows_x86_64_gnu" version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" [[package]] name = "windows_x86_64_gnullvm" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" [[package]] name = "windows_x86_64_gnullvm" version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" [[package]] name = "windows_x86_64_msvc" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "windows_x86_64_msvc" version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" [[package]] name = "yansi" version = "1.0.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1367295b8f788d371ce2dbc842c7b709c73ee1364d30351dd300ec2203b12377" [[package]] name = "zoxide" version = "0.9.4" dependencies = [ "anyhow", "askama", "assert_cmd", "bincode", "clap", "clap_complete", "clap_complete_fig", "color-print", "dirs", "dunce", "fastrand", "glob", "nix", "ouroboros", "rstest", "rstest_reuse", "serde", "tempfile", "which", ] zoxide-0.9.4/Cargo.toml 0000644 00000006150 00000000001 0010350 0 ustar # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.74.1" name = "zoxide" version = "0.9.4" authors = ["Ajeet D'Souza <98ajeet@gmail.com>"] description = "A smarter cd command for your terminal" homepage = "https://github.com/ajeetdsouza/zoxide" readme = "README.md" keywords = [ "cli", "filesystem", "shell", "tool", "utility", ] categories = [ "command-line-utilities", "filesystem", ] license = "MIT" repository = "https://github.com/ajeetdsouza/zoxide" [package.metadata.deb] assets = [ [ "target/release/zoxide", "usr/bin/", "755", ], [ "contrib/completions/zoxide.bash", "usr/share/bash-completion/completions/zoxide", "644", ], [ "contrib/completions/zoxide.fish", "usr/share/fish/vendor_completions.d/", "664", ], [ "contrib/completions/_zoxide", "usr/share/zsh/vendor-completions/", "644", ], [ "man/man1/*", "usr/share/man/man1/", "644", ], [ "README.md", "usr/share/doc/zoxide/", "644", ], [ "CHANGELOG.md", "usr/share/doc/zoxide/", "644", ], [ "LICENSE", "usr/share/doc/zoxide/", "644", ], ] extended-description = "zoxide is a smarter cd command, inspired by z and autojump. It remembers which directories you use most frequently, so you can \"jump\" to them in just a few keystrokes." priority = "optional" section = "utils" [profile.release] lto = true codegen-units = 1 debug = 0 strip = true [dependencies.anyhow] version = "1.0.32" [dependencies.askama] version = "0.12.0" default-features = false [dependencies.bincode] version = "1.3.1" [dependencies.clap] version = "4.3.0" features = ["derive"] [dependencies.color-print] version = "0.3.4" [dependencies.dirs] version = "5.0.0" [dependencies.dunce] version = "1.0.1" [dependencies.fastrand] version = "2.0.0" [dependencies.glob] version = "0.3.0" [dependencies.ouroboros] version = "0.18.3" [dependencies.serde] version = "1.0.116" features = ["derive"] [dev-dependencies.assert_cmd] version = "2.0.0" [dev-dependencies.rstest] version = "0.18.0" default-features = false [dev-dependencies.rstest_reuse] version = "0.6.0" [dev-dependencies.tempfile] version = "3.1.0" [build-dependencies.clap] version = "4.3.0" features = ["derive"] [build-dependencies.clap_complete] version = "4.3.0" [build-dependencies.clap_complete_fig] version = "4.3.0" [build-dependencies.color-print] version = "0.3.4" [features] default = [] nix-dev = [] [target."cfg(unix)".dependencies.nix] version = "0.27.1" features = [ "fs", "user", ] default-features = false [target."cfg(windows)".dependencies.which] version = "6.0.0" [badges.maintenance] status = "actively-developed" zoxide-0.9.4/Cargo.toml.orig 0000644 0000000 0000000 00000004626 10461020230 0014037 0 ustar 0000000 0000000 [package] authors = ["Ajeet D'Souza <98ajeet@gmail.com>"] categories = ["command-line-utilities", "filesystem"] description = "A smarter cd command for your terminal" edition = "2021" homepage = "https://github.com/ajeetdsouza/zoxide" keywords = ["cli", "filesystem", "shell", "tool", "utility"] license = "MIT" name = "zoxide" readme = "README.md" repository = "https://github.com/ajeetdsouza/zoxide" rust-version = "1.74.1" version = "0.9.4" [badges] maintenance = { status = "actively-developed" } [dependencies] anyhow = "1.0.32" askama = { version = "0.12.0", default-features = false } bincode = "1.3.1" clap = { version = "4.3.0", features = ["derive"] } color-print = "0.3.4" dirs = "5.0.0" dunce = "1.0.1" fastrand = "2.0.0" glob = "0.3.0" ouroboros = "0.18.3" serde = { version = "1.0.116", features = ["derive"] } [target.'cfg(unix)'.dependencies] nix = { version = "0.27.1", default-features = false, features = [ "fs", "user", ] } [target.'cfg(windows)'.dependencies] which = "6.0.0" [build-dependencies] clap = { version = "4.3.0", features = ["derive"] } clap_complete = "4.3.0" clap_complete_fig = "4.3.0" color-print = "0.3.4" [dev-dependencies] assert_cmd = "2.0.0" rstest = { version = "0.18.0", default-features = false } rstest_reuse = "0.6.0" tempfile = "3.1.0" [features] default = [] nix-dev = [] [profile.release] codegen-units = 1 debug = 0 lto = true strip = true [package.metadata.deb] assets = [ [ "target/release/zoxide", "usr/bin/", "755", ], [ "contrib/completions/zoxide.bash", "usr/share/bash-completion/completions/zoxide", "644", ], [ "contrib/completions/zoxide.fish", "usr/share/fish/vendor_completions.d/", "664", ], [ "contrib/completions/_zoxide", "usr/share/zsh/vendor-completions/", "644", ], [ "man/man1/*", "usr/share/man/man1/", "644", ], [ "README.md", "usr/share/doc/zoxide/", "644", ], [ "CHANGELOG.md", "usr/share/doc/zoxide/", "644", ], [ "LICENSE", "usr/share/doc/zoxide/", "644", ], ] extended-description = """\ zoxide is a smarter cd command, inspired by z and autojump. It remembers which \ directories you use most frequently, so you can "jump" to them in just a few \ keystrokes.""" priority = "optional" section = "utils" zoxide-0.9.4/Cross.toml 0000644 0000000 0000000 00000000060 10461020230 0013122 0 ustar 0000000 0000000 [build.env] passthrough = ["CARGO_INCREMENTAL"] zoxide-0.9.4/LICENSE 0000644 0000000 0000000 00000002035 10461020230 0012145 0 ustar 0000000 0000000 Copyright 2020 Ajeet D'Souza Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. zoxide-0.9.4/README.md 0000644 0000000 0000000 00000055543 10461020230 0012433 0 ustar 0000000 0000000