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="8b894ca626
"><code>8b894ca</code></a> Bump to 1.11.0</li> <li><a href="184277a5f2
"><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="bfe98e4642
"><code>bfe98e4</code></a> Remove outdated documentation link in Cargo.toml</li> <li><a href="062c264acf
"><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="6375d1e431
"><code>6375d1e</code></a> Adding missing size_hint implementations.</li> <li><a href="e718ec3132
"><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="e9104b117d
"><code>e9104b1</code></a> Fix: Remove duplicate changelog</li> <li><a href="30a3e6bab2
"><code>30a3e6b</code></a> docs: Update changelog for versions 1.9.0 to 1.10.1</li> <li><a href="eb794dda07
"><code>eb794dd</code></a> docs: Update changelog for versions 1.9.0 to 1.10.1</li> <li><a href="8d165c5842
"><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 /> [](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>
48 lines
1.6 KiB
TOML
48 lines
1.6 KiB
TOML
[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"
|
|
name = "nu-cli"
|
|
version = "0.90.2"
|
|
|
|
[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 }
|
|
|
|
[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"
|
|
reedline = { version = "0.29.0", features = ["bashisms", "sqlite"] }
|
|
|
|
chrono = { default-features = false, features = ["std"], version = "0.4" }
|
|
crossterm = "0.27"
|
|
fancy-regex = "0.12"
|
|
fuzzy-matcher = "0.3"
|
|
is_executable = "1.0"
|
|
log = "0.4"
|
|
miette = { version = "7.0", features = ["fancy-no-backtrace"] }
|
|
lscolors = { version = "0.17", default-features = false, features = ["nu-ansi-term"] }
|
|
once_cell = "1.18"
|
|
percent-encoding = "2"
|
|
pathdiff = "0.2"
|
|
sysinfo = "0.30"
|
|
unicode-segmentation = "1.11"
|
|
uuid = { version = "1.6.0", features = ["v4"] }
|
|
which = "6.0.0"
|
|
|
|
[features]
|
|
plugin = []
|