2024-02-25 23:32:50 +01:00
|
|
|
[package]
|
|
|
|
authors = ["The Nushell Project Developers"]
|
|
|
|
description = "An example of stream handling in nushell plugins"
|
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_stream_example"
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
name = "nu_plugin_stream_example"
|
2024-03-05 21:28:40 +01:00
|
|
|
version = "0.91.0"
|
2024-02-25 23:32:50 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_stream_example"
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-05 21:28:40 +01:00
|
|
|
nu-plugin = { path = "../nu-plugin", version = "0.91.0" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.91.0", features = ["plugin"] }
|