mirror of
https://github.com/nushell/nushell.git
synced 2024-11-29 03:44:19 +01:00
4a1d12462f
Bumps [miette](https://github.com/zkat/miette) from 5.5.0 to 5.6.0. <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>5.6.0 (2023-03-14)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>ci:</strong> configure clippy-specific MSRV (<a href="b658fc020b
">b658fc02</a>)</li> <li><strong>graphical:</strong> Fix wrong severity of related errors (<a href="https://redirect.github.com/zkat/miette/issues/234">#234</a>) (<a href="3497508aa9
">3497508a</a>)</li> <li><strong>atty:</strong> Switch out <code>atty</code> for <code>is-terminal</code> (<a href="https://redirect.github.com/zkat/miette/issues/229">#229</a>) (<a href="443d240f49
">443d240f</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>protocol:</strong> implement <code>Ord</code> for <code>Severity</code> (<a href="https://redirect.github.com/zkat/miette/issues/240">#240</a>) (<a href="ed486c959d
">ed486c95</a>)</li> </ul> <p><!-- raw HTML omitted --><!-- raw HTML omitted --></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="78fe18e699
"><code>78fe18e</code></a> chore: Release</li> <li><a href="2335b25ee7
"><code>2335b25</code></a> docs: update changelog</li> <li><a href="443d240f49
"><code>443d240</code></a> fix(atty): Switch out <code>atty</code> for <code>is-terminal</code> (<a href="https://redirect.github.com/zkat/miette/issues/229">#229</a>)</li> <li><a href="ed486c959d
"><code>ed486c9</code></a> feat(protocol): implement <code>Ord</code> for <code>Severity</code> (<a href="https://redirect.github.com/zkat/miette/issues/240">#240</a>)</li> <li><a href="3497508aa9
"><code>3497508</code></a> fix(graphical): Fix wrong severity of related errors (<a href="https://redirect.github.com/zkat/miette/issues/234">#234</a>)</li> <li><a href="b658fc020b
"><code>b658fc0</code></a> fix(ci): configure clippy-specific MSRV</li> <li><a href="ebc61b5cf8
"><code>ebc61b5</code></a> docs: Mention miette::miette! macro under "... in application code" (<a href="https://redirect.github.com/zkat/miette/issues/233">#233</a>)</li> <li><a href="14f952dc91
"><code>14f952d</code></a> (cargo-release) start next development iteration 5.5.1-alpha.0</li> <li><a href="128c0a1fae
"><code>128c0a1</code></a> (cargo-release) start next development iteration 5.5.1-alpha.0</li> <li>See full diff in <a href="https://github.com/zkat/miette/compare/miette-derive-v5.5.0...miette-derive-v5.6.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=5.5.0&new-version=5.6.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>
169 lines
4.9 KiB
TOML
169 lines
4.9 KiB
TOML
[package]
|
|
authors = ["The Nushell Project Developers"]
|
|
default-run = "nu"
|
|
description = "A new type of shell"
|
|
documentation = "https://www.nushell.sh/book/"
|
|
edition = "2021"
|
|
exclude = ["images"]
|
|
homepage = "https://www.nushell.sh"
|
|
license = "MIT"
|
|
name = "nu"
|
|
repository = "https://github.com/nushell/nushell"
|
|
rust-version = "1.60"
|
|
version = "0.77.2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[package.metadata.binstall]
|
|
pkg-url = "{ repo }/releases/download/{ version }/{ name }-{ version }-{ target }.{ archive-format }"
|
|
pkg-fmt = "tgz"
|
|
|
|
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
|
|
pkg-fmt = "zip"
|
|
|
|
[workspace]
|
|
members = [
|
|
"crates/nu-cli",
|
|
"crates/nu-engine",
|
|
"crates/nu-parser",
|
|
"crates/nu-system",
|
|
"crates/nu-cmd-lang",
|
|
"crates/nu-command",
|
|
"crates/nu-protocol",
|
|
"crates/nu-plugin",
|
|
"crates/nu_plugin_inc",
|
|
"crates/nu_plugin_gstat",
|
|
"crates/nu_plugin_example",
|
|
"crates/nu_plugin_query",
|
|
"crates/nu_plugin_custom_values",
|
|
"crates/nu_plugin_formats",
|
|
"crates/nu-utils",
|
|
]
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4.23", features = ["serde"] }
|
|
crossterm = "0.24.0"
|
|
ctrlc = "3.2.1"
|
|
log = "0.4"
|
|
miette = { version = "5.6.0", features = ["fancy-no-backtrace"] }
|
|
nu-cli = { path = "./crates/nu-cli", version = "0.77.2" }
|
|
nu-color-config = { path = "./crates/nu-color-config", version = "0.77.2" }
|
|
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.77.2" }
|
|
nu-command = { path = "./crates/nu-command", version = "0.77.2" }
|
|
nu-engine = { path = "./crates/nu-engine", version = "0.77.2" }
|
|
nu-json = { path = "./crates/nu-json", version = "0.77.2" }
|
|
nu-parser = { path = "./crates/nu-parser", version = "0.77.2" }
|
|
nu-path = { path = "./crates/nu-path", version = "0.77.2" }
|
|
nu-plugin = { path = "./crates/nu-plugin", optional = true, version = "0.77.2" }
|
|
nu-pretty-hex = { path = "./crates/nu-pretty-hex", version = "0.77.2" }
|
|
nu-protocol = { path = "./crates/nu-protocol", version = "0.77.2" }
|
|
nu-system = { path = "./crates/nu-system", version = "0.77.2" }
|
|
nu-table = { path = "./crates/nu-table", version = "0.77.2" }
|
|
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.77.2" }
|
|
nu-utils = { path = "./crates/nu-utils", version = "0.77.2" }
|
|
|
|
nu-ansi-term = "0.47.0"
|
|
reedline = { version = "0.17.0", features = ["bashisms", "sqlite"] }
|
|
|
|
rayon = "1.7.0"
|
|
is_executable = "1.0.1"
|
|
simplelog = "0.12.0"
|
|
time = "0.3.12"
|
|
|
|
[target.'cfg(not(target_os = "windows"))'.dependencies]
|
|
# Our dependencies don't use OpenSSL on Windows
|
|
openssl = { version = "0.10.38", features = ["vendored"], optional = true }
|
|
signal-hook = { version = "0.3.14", default-features = false }
|
|
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
winres = "0.1"
|
|
|
|
[target.'cfg(target_family = "unix")'.dependencies]
|
|
nix = { version = "0.26", default-features = false, features = [
|
|
"signal",
|
|
"process",
|
|
"fs",
|
|
"term",
|
|
] }
|
|
atty = "0.2"
|
|
|
|
[dev-dependencies]
|
|
nu-test-support = { path = "./crates/nu-test-support", version = "0.77.2" }
|
|
tempfile = "3.4.0"
|
|
assert_cmd = "2.0.2"
|
|
criterion = "0.4"
|
|
pretty_assertions = "1.0.0"
|
|
serial_test = "1.0.0"
|
|
hamcrest2 = "0.3.0"
|
|
rstest = { version = "0.17.0", default-features = false }
|
|
itertools = "0.10.3"
|
|
|
|
[features]
|
|
plugin = [
|
|
"nu-plugin",
|
|
"nu-cli/plugin",
|
|
"nu-parser/plugin",
|
|
"nu-command/plugin",
|
|
"nu-protocol/plugin",
|
|
"nu-engine/plugin",
|
|
]
|
|
# extra used to be more useful but now it's the same as default. Leaving it in for backcompat with existing build scripts
|
|
extra = ["default"]
|
|
default = ["plugin", "which-support", "trash-support", "sqlite"]
|
|
stable = ["default"]
|
|
wasi = []
|
|
|
|
# Enable to statically link OpenSSL; otherwise the system version will be used. Not enabled by default because it takes a while to build
|
|
static-link-openssl = ["dep:openssl"]
|
|
|
|
# Stable (Default)
|
|
which-support = ["nu-command/which-support"]
|
|
trash-support = ["nu-command/trash-support"]
|
|
|
|
# Extra
|
|
|
|
# Dataframe feature for nushell
|
|
dataframe = ["nu-command/dataframe"]
|
|
|
|
# SQLite commands for nushell
|
|
sqlite = ["nu-command/sqlite"]
|
|
|
|
[profile.release]
|
|
opt-level = "s" # Optimize for size
|
|
strip = "debuginfo"
|
|
lto = "thin"
|
|
|
|
# build with `cargo build --profile profiling`
|
|
# to analyze performance with tooling like linux perf
|
|
[profile.profiling]
|
|
inherits = "release"
|
|
strip = false
|
|
debug = true
|
|
|
|
# build with `cargo build --profile ci`
|
|
# to analyze performance with tooling like linux perf
|
|
[profile.ci]
|
|
inherits = "dev"
|
|
strip = false
|
|
debug = false
|
|
|
|
# Main nu binary
|
|
[[bin]]
|
|
name = "nu"
|
|
path = "src/main.rs"
|
|
bench = false
|
|
|
|
# To use a development version of a dependency please use a global override here
|
|
# changing versions in each sub-crate of the workspace is tedious
|
|
[patch.crates-io]
|
|
reedline = { git = "https://github.com/nushell/reedline.git", branch = "main" }
|
|
# nu-ansi-term = {git = "https://github.com/nushell/nu-ansi-term.git", branch = "main"}
|
|
|
|
# Criterion benchmarking setup
|
|
# Run all benchmarks with `cargo bench`
|
|
# Run individual benchmarks like `cargo bench -- <regex>` e.g. `cargo bench -- parse`
|
|
[[bench]]
|
|
name = "benchmarks"
|
|
harness = false
|