nushell/crates/nu-cli/Cargo.toml

48 lines
1.6 KiB
TOML
Raw Normal View History

[package]
authors = ["The Nushell Project Developers"]
description = "CLI-related functionality for Nushell"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cli"
edition = "2021"
license = "MIT"
2020-07-05 22:12:44 +02:00
name = "nu-cli"
version = "0.90.2"
2021-08-10 20:51:08 +02:00
[lib]
bench = false
[dev-dependencies]
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.90.2" }
nu-command = { path = "../nu-command", version = "0.90.2" }
nu-test-support = { path = "../nu-test-support", version = "0.90.2" }
rstest = { version = "0.18.1", default-features = false }
2021-08-10 20:51:08 +02:00
[dependencies]
nu-cmd-base = { path = "../nu-cmd-base", version = "0.90.2" }
nu-engine = { path = "../nu-engine", version = "0.90.2" }
nu-path = { path = "../nu-path", version = "0.90.2" }
nu-parser = { path = "../nu-parser", version = "0.90.2" }
nu-protocol = { path = "../nu-protocol", version = "0.90.2" }
nu-utils = { path = "../nu-utils", version = "0.90.2" }
nu-color-config = { path = "../nu-color-config", version = "0.90.2" }
nu-ansi-term = "0.50.0"
Pin reedline to version 0.29.0 (#11782) <!-- if this PR closes one or more issues, you can automatically link the PR with them by using one of the [*linking keywords*](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword), e.g. - this PR should close #xxxx - fixes #xxxx you can also mention related issues, PRs or discussions! --> See full release notes: https://github.com/nushell/reedline/releases/tag/v0.29.0 # Description <!-- Thank you for improving Nushell. Please, check our [contributing guide](../CONTRIBUTING.md) and talk to the core team before making major changes. Description of your pull request goes here. **Provide examples and/or screenshots** if your changes affect the user experience. --> # User-Facing Changes <!-- List of all changes that impact the user experience here. This helps us keep track of breaking changes. --> # Tests + Formatting <!-- Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass (on Windows make sure to [enable developer mode](https://learn.microsoft.com/en-us/windows/apps/get-started/developer-mode-features-and-debugging)) - `cargo run -- -c "use std testing; testing run-tests --path crates/nu-std"` to run the tests for the standard library > **Note** > from `nushell` you can also use the `toolkit` as follows > ```bash > use toolkit.nu # or use an `env_change` hook to activate it automatically > toolkit check pr > ``` --> # After Submitting <!-- If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date. -->
2024-02-06 21:23:41 +01:00
reedline = { version = "0.29.0", features = ["bashisms", "sqlite"] }
chrono = { default-features = false, features = ["std"], version = "0.4" }
crossterm = "0.27"
Bump fancy-regex from 0.12.0 to 0.13.0 (#11893) [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [fancy-regex](https://github.com/fancy-regex/fancy-regex) from 0.12.0 to 0.13.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fancy-regex/fancy-regex/releases">fancy-regex's releases</a>.</em></p> <blockquote> <h2>0.13.0</h2> <h3>Added</h3> <ul> <li>Support for relative backreferences using <code>\k&lt;-1&gt;</code> (-1 references the previous group) (<a href="https://redirect.github.com/fancy-regex/fancy-regex/issues/121">#121</a>)</li> <li>Add <code>try_replacen</code> to <code>Regex</code> which returns a <code>Result</code> instead of panicking when matching errors (<a href="https://redirect.github.com/fancy-regex/fancy-regex/issues/130">#130</a>)</li> </ul> <h3>Changed</h3> <ul> <li>Switch from regex crate to regex-automata and regex-syntax (lower level APIs) to simplify internals (<a href="https://redirect.github.com/fancy-regex/fancy-regex/issues/121">#121</a>)</li> <li>Allow escaping some letters in character classes, e.g. <code>[\A]</code> used to error but now matches the same as <code>[A]</code> (for compatibility with Oniguruma)</li> <li>MSRV (minimum supported Rust version) is now 1.66.1 (from 1.61.0)</li> </ul> <h3>Fixed</h3> <ul> <li>Fix index out of bounds panic when parsing unclosed <code>(?(</code> (<a href="https://redirect.github.com/fancy-regex/fancy-regex/issues/125">#125</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fancy-regex/fancy-regex/blob/main/CHANGELOG.md">fancy-regex's changelog</a>.</em></p> <blockquote> <h2>[0.13.0] - 2023-12-22</h2> <h3>Added</h3> <ul> <li>Support for relative backreferences using <code>\k&lt;-1&gt;</code> (-1 references the previous group) (<a href="https://redirect.github.com/fancy-regex/fancy-regex/issues/121">#121</a>)</li> <li>Add <code>try_replacen</code> to <code>Regex</code> which returns a <code>Result</code> instead of panicking when matching errors (<a href="https://redirect.github.com/fancy-regex/fancy-regex/issues/130">#130</a>)</li> </ul> <h3>Changed</h3> <ul> <li>Switch from regex crate to regex-automata and regex-syntax (lower level APIs) to simplify internals (<a href="https://redirect.github.com/fancy-regex/fancy-regex/issues/121">#121</a>)</li> <li>Allow escaping some letters in character classes, e.g. <code>[\A]</code> used to error but now matches the same as <code>[A]</code> (for compatibility with Oniguruma)</li> <li>MSRV (minimum supported Rust version) is now 1.66.1 (from 1.61.0)</li> </ul> <h3>Fixed</h3> <ul> <li>Fix index out of bounds panic when parsing unclosed <code>(?(</code> (<a href="https://redirect.github.com/fancy-regex/fancy-regex/issues/125">#125</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fancy-regex/fancy-regex/commit/bf2c807447f72ee20ae839e0f8cb3a06fc79982c"><code>bf2c807</code></a> Version 0.13.0</li> <li><a href="https://github.com/fancy-regex/fancy-regex/commit/7b4ad1178d5ecdd4d79f861fc2f5bbf03bddede1"><code>7b4ad11</code></a> Merge pull request <a href="https://redirect.github.com/fancy-regex/fancy-regex/issues/129">#129</a> from fancy-regex/changelog-0.13</li> <li><a href="https://github.com/fancy-regex/fancy-regex/commit/8d8ea4fcf9e469f8daa372d2fcc685157f22af1f"><code>8d8ea4f</code></a> Document how to check matching in Oniguruma</li> <li><a href="https://github.com/fancy-regex/fancy-regex/commit/1fab2c7e0be84d91e5532c1a6384653c6ae80b32"><code>1fab2c7</code></a> Add character class escaping change</li> <li><a href="https://github.com/fancy-regex/fancy-regex/commit/2d6339584dbc9b239a7580ffcfdb8a88e3a6951a"><code>2d63395</code></a> Add try_replacen</li> <li><a href="https://github.com/fancy-regex/fancy-regex/commit/6deb4fc1b207fbd9ea21680f6362e2cfc9155b64"><code>6deb4fc</code></a> Prepare CHANGELOG for next release</li> <li><a href="https://github.com/fancy-regex/fancy-regex/commit/c0e701f821afddb133b16bf9b357aa7791204a1a"><code>c0e701f</code></a> Merge pull request <a href="https://redirect.github.com/fancy-regex/fancy-regex/issues/130">#130</a> from kevinhu/try_replacen</li> <li><a href="https://github.com/fancy-regex/fancy-regex/commit/55f6549bec8fc10d13920049deb9343b87a964e2"><code>55f6549</code></a> Add try_replacen</li> <li><a href="https://github.com/fancy-regex/fancy-regex/commit/8ab3a44053d1ab548050b9cc12c8d9298eb28fb9"><code>8ab3a44</code></a> Merge branch 'fancy-regex:main' into main</li> <li><a href="https://github.com/fancy-regex/fancy-regex/commit/494cd931c30ec59bd2fc7d257216491658f11d3b"><code>494cd93</code></a> Merge pull request <a href="https://redirect.github.com/fancy-regex/fancy-regex/issues/126">#126</a> from robertknight/patch-1</li> <li>Additional commits viewable in <a href="https://github.com/fancy-regex/fancy-regex/compare/0.12.0...0.13.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=fancy-regex&package-manager=cargo&previous-version=0.12.0&new-version=0.13.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-19 02:54:37 +01:00
fancy-regex = "0.13"
fuzzy-matcher = "0.3"
is_executable = "1.0"
log = "0.4"
Bump miette from 7.0.0 to 7.1.0 (#11892) Bumps [miette](https://github.com/zkat/miette) from 7.0.0 to 7.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/zkat/miette/releases">miette's releases</a>.</em></p> <blockquote> <h2>v7.1.0</h2> <h3>Features</h3> <ul> <li><strong>derive:</strong> enable more boxed types to be #[diagnostic_source] (<a href="https://redirect.github.com/zkat/miette/issues/338">#338</a>) (<a href="https://github.com/zkat/miette/commit/c2f06f6cca15cbdd083dbff3d46b7729056ac6a4">c2f06f6c</a>)</li> <li><strong>source:</strong> derive common traits for NamedSource, SourceSpan, and SourceOffset (<a href="https://redirect.github.com/zkat/miette/issues/340">#340</a>) (<a href="https://github.com/zkat/miette/commit/6f09250cca14561f07fba899a8e6d3c0df14230e">6f09250c</a>)</li> <li><strong>collection:</strong> add support for collection of labels (<a href="https://redirect.github.com/zkat/miette/issues/341">#341</a>) (<a href="https://github.com/zkat/miette/commit/03060245d816a53a33209e6b7e1c3c42948e9962">03060245</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>tests:</strong> revert test-breaking changes of e5c7ae4 (<a href="https://redirect.github.com/zkat/miette/issues/339">#339</a>) (<a href="https://github.com/zkat/miette/commit/6e829f8c0ce2fc7bb2fc4041e6a6072f12db1f71">6e829f8c</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/zkat/miette/blob/main/CHANGELOG.md">miette's changelog</a>.</em></p> <blockquote> <h2>7.1.0 (2024-02-16)</h2> <h3>Features</h3> <ul> <li><strong>derive:</strong> enable more boxed types to be #[diagnostic_source] (<a href="https://redirect.github.com/zkat/miette/issues/338">#338</a>) (<a href="https://github.com/zkat/miette/commit/c2f06f6cca15cbdd083dbff3d46b7729056ac6a4">c2f06f6c</a>)</li> <li><strong>source:</strong> derive common traits for NamedSource, SourceSpan, and SourceOffset (<a href="https://redirect.github.com/zkat/miette/issues/340">#340</a>) (<a href="https://github.com/zkat/miette/commit/6f09250cca14561f07fba899a8e6d3c0df14230e">6f09250c</a>)</li> <li><strong>collection:</strong> add support for collection of labels (<a href="https://redirect.github.com/zkat/miette/issues/341">#341</a>) (<a href="https://github.com/zkat/miette/commit/03060245d816a53a33209e6b7e1c3c42948e9962">03060245</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>tests:</strong> revert test-breaking changes of e5c7ae4 (<a href="https://redirect.github.com/zkat/miette/issues/339">#339</a>) (<a href="https://github.com/zkat/miette/commit/6e829f8c0ce2fc7bb2fc4041e6a6072f12db1f71">6e829f8c</a>)</li> </ul> <p><!-- raw HTML omitted --><!-- raw HTML omitted --></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/zkat/miette/commit/a18a6444d92cd1ada40bfd7e39b86f672c8a6924"><code>a18a644</code></a> chore: Release</li> <li><a href="https://github.com/zkat/miette/commit/dc77b0cb5b350c8405f4cbfd78033729d5f3c63c"><code>dc77b0c</code></a> docs: update changelog</li> <li><a href="https://github.com/zkat/miette/commit/03060245d816a53a33209e6b7e1c3c42948e9962"><code>0306024</code></a> feat(collection): add support for collection of labels (<a href="https://redirect.github.com/zkat/miette/issues/341">#341</a>)</li> <li><a href="https://github.com/zkat/miette/commit/6f09250cca14561f07fba899a8e6d3c0df14230e"><code>6f09250</code></a> feat(source): derive common traits for NamedSource, SourceSpan, and SourceOff...</li> <li><a href="https://github.com/zkat/miette/commit/c2f06f6cca15cbdd083dbff3d46b7729056ac6a4"><code>c2f06f6</code></a> feat(derive): enable more boxed types to be #[diagnostic_source] (<a href="https://redirect.github.com/zkat/miette/issues/338">#338</a>)</li> <li><a href="https://github.com/zkat/miette/commit/6e829f8c0ce2fc7bb2fc4041e6a6072f12db1f71"><code>6e829f8</code></a> fix(tests): revert test-breaking changes of e5c7ae4 (<a href="https://redirect.github.com/zkat/miette/issues/339">#339</a>)</li> <li>See full diff in <a href="https://github.com/zkat/miette/compare/miette-derive-v7.0.0...miette-derive-v7.1.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=miette&package-manager=cargo&previous-version=7.0.0&new-version=7.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-19 02:54:08 +01:00
miette = { version = "7.1", features = ["fancy-no-backtrace"] }
colored file-like completions (#11702) <!-- if this PR closes one or more issues, you can automatically link the PR with them by using one of the [*linking keywords*](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword), e.g. - this PR should close #xxxx - fixes #xxxx you can also mention related issues, PRs or discussions! --> # Description <!-- Thank you for improving Nushell. Please, check our [contributing guide](../CONTRIBUTING.md) and talk to the core team before making major changes. Description of your pull request goes here. **Provide examples and/or screenshots** if your changes affect the user experience. --> `ls` and other file completions uses `LS_COLORS`. ![maim-2024 01 31 21 34 31](https://github.com/nushell/nushell/assets/15631555/d5c3813f-77b5-4391-aa0b-4b2125e5aca5) # User-Facing Changes <!-- List of all changes that impact the user experience here. This helps us keep track of breaking changes. --> # Tests + Formatting <!-- Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass (on Windows make sure to [enable developer mode](https://learn.microsoft.com/en-us/windows/apps/get-started/developer-mode-features-and-debugging)) - `cargo run -- -c "use std testing; testing run-tests --path crates/nu-std"` to run the tests for the standard library > **Note** > from `nushell` you can also use the `toolkit` as follows > ```bash > use toolkit.nu # or use an `env_change` hook to activate it automatically > toolkit check pr > ``` --> # After Submitting <!-- If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date. --> --------- Co-authored-by: Darren Schroeder <343840+fdncred@users.noreply.github.com>
2024-02-08 21:29:28 +01:00
lscolors = { version = "0.17", default-features = false, features = ["nu-ansi-term"] }
once_cell = "1.18"
percent-encoding = "2"
Fish-like completions for nested directories (#10543) <!-- if this PR closes one or more issues, you can automatically link the PR with them by using one of the [*linking keywords*](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword), e.g. - this PR should close #5683 you can also mention related issues, PRs or discussions! --> # Description <!-- Thank you for improving Nushell. Please, check our [contributing guide](../CONTRIBUTING.md) and talk to the core team before making major changes. Description of your pull request goes here. **Provide examples and/or screenshots** if your changes affect the user experience. --> This PR allows tab completion for nested directories while only specifying a part of the directory names. To illustrate this, if I type `tar/de/inc` and hit tab, it autocompletes to `./target/debug/incremental`. # User-Facing Changes <!-- List of all changes that impact the user experience here. This helps us keep track of breaking changes. --> Nested paths can be tab completed by typing lesser characters. # Tests + Formatting <!-- Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass (on Windows make sure to [enable developer mode](https://learn.microsoft.com/en-us/windows/apps/get-started/developer-mode-features-and-debugging)) - `cargo run -- -c "use std testing; testing run-tests --path crates/nu-std"` to run the tests for the standard library > **Note** > from `nushell` you can also use the `toolkit` as follows > ```bash > use toolkit.nu # or use an `env_change` hook to activate it automatically > toolkit check pr > ``` --> Tests cases are added. # After Submitting <!-- If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date. -->
2023-10-02 19:44:51 +02:00
pathdiff = "0.2"
sysinfo = "0.30"
Bump unicode-segmentation from 1.10.1 to 1.11.0 (#11891) Bumps [unicode-segmentation](https://github.com/unicode-rs/unicode-segmentation) from 1.10.1 to 1.11.0. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/unicode-rs/unicode-segmentation/commit/8b894ca626d886da0d0974f9760e217cbba99378"><code>8b894ca</code></a> Bump to 1.11.0</li> <li><a href="https://github.com/unicode-rs/unicode-segmentation/commit/184277a5f24c8c7dfd6481ee774e723206f08dc9"><code>184277a</code></a> Merge pull request <a href="https://redirect.github.com/unicode-rs/unicode-segmentation/issues/130">#130</a> from syvb/rm_old_docs</li> <li><a href="https://github.com/unicode-rs/unicode-segmentation/commit/bfe98e4642f51356c46041bca3da00b51df07ce4"><code>bfe98e4</code></a> Remove outdated documentation link in Cargo.toml</li> <li><a href="https://github.com/unicode-rs/unicode-segmentation/commit/062c264acf1d58c55755df94bb685f515d2cb519"><code>062c264</code></a> Merge pull request <a href="https://redirect.github.com/unicode-rs/unicode-segmentation/issues/128">#128</a> from ryanavella/master</li> <li><a href="https://github.com/unicode-rs/unicode-segmentation/commit/6375d1e43103e0e0c536e88081366a799e8b8ab8"><code>6375d1e</code></a> Adding missing size_hint implementations.</li> <li><a href="https://github.com/unicode-rs/unicode-segmentation/commit/e718ec313220ae0c6d92c46baf4f6eadfff4d7f7"><code>e718ec3</code></a> Merge pull request <a href="https://redirect.github.com/unicode-rs/unicode-segmentation/issues/127">#127</a> from nicolasmendoza/docs/update-changelogs-from-v1.9....</li> <li><a href="https://github.com/unicode-rs/unicode-segmentation/commit/e9104b117da5484671cbec47e9621022005e1c15"><code>e9104b1</code></a> Fix: Remove duplicate changelog</li> <li><a href="https://github.com/unicode-rs/unicode-segmentation/commit/30a3e6bab20f9fad342c16c74b255e8d326f461d"><code>30a3e6b</code></a> docs: Update changelog for versions 1.9.0 to 1.10.1</li> <li><a href="https://github.com/unicode-rs/unicode-segmentation/commit/eb794dda07dcb42a5281f745e26aac0e9a804ded"><code>eb794dd</code></a> docs: Update changelog for versions 1.9.0 to 1.10.1</li> <li><a href="https://github.com/unicode-rs/unicode-segmentation/commit/8d165c5842ebb64711d1c5f5ac6090772a179f09"><code>8d165c5</code></a> Merge pull request <a href="https://redirect.github.com/unicode-rs/unicode-segmentation/issues/126">#126</a> from nicolasmendoza/docs/update-changelogs</li> <li>Additional commits viewable in <a href="https://github.com/unicode-rs/unicode-segmentation/compare/v1.10.1...v1.11.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=unicode-segmentation&package-manager=cargo&previous-version=1.10.1&new-version=1.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-19 02:36:31 +01:00
unicode-segmentation = "1.11"
2023-11-20 20:38:41 +01:00
uuid = { version = "1.6.0", features = ["v4"] }
which = "6.0.0"
[features]
plugin = []