forked from extern/nushell
0a9d14fcb3
[//]: # (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 [rstest](https://github.com/la10736/rstest) from 0.15.0 to 0.16.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/la10736/rstest/releases">rstest's releases</a>.</em></p> <blockquote> <h2>0.16.0</h2> <p>Use values expression to define test names.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/la10736/rstest/blob/master/CHANGELOG.md">rstest's changelog</a>.</em></p> <blockquote> <h2>[0.16.0] 2022/11/27</h2> <h3>Changed</h3> <ul> <li>Show <code>TEST START</code> banner only when trace some argument: See <a href="https://github-redirect.dependabot.com/la10736/rstest/issues/158">#158</a> for details.</li> <li>Add values to test name: See <a href="https://github-redirect.dependabot.com/la10736/rstest/issues/160">#160</a> for details.</li> </ul> <h3>Fixed</h3> <ul> <li>Updated test fixtures to 1.64.0 compiler's error messages.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="d7ff088126
"><code>d7ff088</code></a> Update checkout list</li> <li><a href="4386575950
"><code>4386575</code></a> Version 0.16.0 chengelog</li> <li><a href="41749a881e
"><code>41749a8</code></a> Fix clippy warning</li> <li><a href="daaddde1a0
"><code>daaddde</code></a> Bump to 0.16.0 version and upgrade dependency</li> <li><a href="576768e4b3
"><code>576768e</code></a> Fixed dev dependency in rstest_macros</li> <li><a href="a6eb3a96cb
"><code>a6eb3a9</code></a> Update rstest_test version</li> <li><a href="4a18dd0bd1
"><code>4a18dd0</code></a> Update version</li> <li><a href="29648832ce
"><code>2964883</code></a> Update dependency version</li> <li><a href="5ad7e3fd61
"><code>5ad7e3f</code></a> <a href="https://github-redirect.dependabot.com/la10736/rstest/issues/160">#160</a> Add test for module annotation</li> <li><a href="a302be019f
"><code>a302be0</code></a> <a href="https://github-redirect.dependabot.com/la10736/rstest/issues/160">#160</a> Tests fixed and add unit for allow</li> <li>Additional commits viewable in <a href="https://github.com/la10736/rstest/compare/0.15.0...0.16.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rstest&package-manager=cargo&previous-version=0.15.0&new-version=0.16.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 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>
43 lines
1.3 KiB
TOML
43 lines
1.3 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.75.1"
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dev-dependencies]
|
|
nu-test-support = { path = "../nu-test-support", version = "0.75.1" }
|
|
nu-command = { path = "../nu-command", version = "0.75.1" }
|
|
rstest = { version = "0.16.0", default-features = false }
|
|
|
|
[dependencies]
|
|
nu-engine = { path = "../nu-engine", version = "0.75.1" }
|
|
nu-path = { path = "../nu-path", version = "0.75.1" }
|
|
nu-parser = { path = "../nu-parser", version = "0.75.1" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.75.1" }
|
|
nu-utils = { path = "../nu-utils", version = "0.75.1" }
|
|
nu-ansi-term = "0.46.0"
|
|
nu-color-config = { path = "../nu-color-config", version = "0.75.1" }
|
|
reedline = { version = "0.15.0", features = ["bashisms", "sqlite"] }
|
|
|
|
atty = "0.2.14"
|
|
chrono = { default-features = false, features = ["std"], version = "0.4.23" }
|
|
crossterm = "0.24.0"
|
|
fancy-regex = "0.11.0"
|
|
fuzzy-matcher = "0.3.7"
|
|
is_executable = "1.0.1"
|
|
once_cell = "1.17.0"
|
|
log = "0.4"
|
|
miette = { version = "5.5.0", features = ["fancy-no-backtrace"] }
|
|
percent-encoding = "2"
|
|
sysinfo = "0.27.7"
|
|
thiserror = "1.0.31"
|
|
|
|
[features]
|
|
plugin = []
|