forked from extern/nushell
1cd70d7505
# Description This disables automatic detection of `#[bench]` and other benchmarks within the crates. Our benchmarks should all live in `benches` This fixes a problem with criterion flags and should also reduce the build requirements for `cargo bench` a bit Taken from https://github.com/nushell/nushell/pull/7952 See: https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options # User-Facing Changes None
21 lines
538 B
TOML
21 lines
538 B
TOML
[package]
|
|
authors = ["The Nushell Project Developers"]
|
|
description = "Functionality for building Nushell plugins"
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "nu-plugin"
|
|
version = "0.75.1"
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
bincode = "1.3.3"
|
|
nu-protocol = { path = "../nu-protocol", version = "0.75.1" }
|
|
nu-engine = { path = "../nu-engine", version = "0.75.1" }
|
|
serde = { version = "1.0.143" }
|
|
serde_json = { version = "1.0"}
|
|
rmp = "0.8.11"
|
|
rmp-serde = "1.1.0"
|