forked from extern/nushell
ed7d3fed66
* Add shuffle plugin see #1437 * Change plugin to integrate into nu structure and build system
23 lines
669 B
TOML
23 lines
669 B
TOML
[package]
|
|
name = "nu_plugin_shuffle"
|
|
description = "Nushell plugin to shuffle input"
|
|
version = "0.10.0"
|
|
license = "MIT"
|
|
authors = ["Falco Hirschenberger <falco.hirschenberger@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
nu-plugin = { path = "../nu-plugin", version = "0.10.0" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.10.0" }
|
|
nu-source = { path = "../nu-source", version = "0.10.0" }
|
|
nu-errors = { path = "../nu-errors", version = "0.10.0" }
|
|
rand = "0.7"
|
|
|
|
[build-dependencies]
|
|
nu-build = { version = "0.10.0", path = "../nu-build" }
|