mirror of
https://github.com/nushell/nushell
synced 2024-11-15 09:27:08 +00:00
3caab5de36
# Description Just bumping to the next dev version. Submitting as a draft until we're ready. # User-Facing 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 -A clippy::needless_collect` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass # 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.
24 lines
609 B
TOML
24 lines
609 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.72.1"
|
|
|
|
[dependencies]
|
|
bincode = "1.3.3"
|
|
nu-protocol = { path = "../nu-protocol", version = "0.72.1" }
|
|
nu-engine = { path = "../nu-engine", version = "0.72.1" }
|
|
serde = { version = "1.0.143" }
|
|
serde_json = { version = "1.0"}
|
|
rmp = "0.8.11"
|
|
rmp-serde = "1.1.0"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
|
|
[[bench]]
|
|
name = "encoder_benchmark"
|
|
harness = false
|