nushell/crates/nu-stream/Cargo.toml
Michael Angerman 5ff4bcfb7a
Nucli refactor crate stream (#2828)
* nu-stream is building on its own, now clean up Cargo.toml

* replace the stream crate in nu-cli

* cc

* since we moved stream out of the nu-cli crate and into its own crate we need to remove pub(crate) and just make it pub

* clean up the prelude and hand merge everything together

* clean up Cargo.tom

* cargo fmt along with Cargo.lock
2020-12-28 18:34:27 +13:00

19 lines
444 B
TOML

[package]
authors = ["The Nu Project Contributors"]
description = "Nushell stream"
edition = "2018"
license = "MIT"
name = "nu-stream"
version = "0.24.2"
[dependencies]
nu-errors = {version = "0.24.2", path = "../nu-errors"}
nu-protocol = {version = "0.24.2", path = "../nu-protocol"}
nu-source = {version = "0.24.2", path = "../nu-source"}
futures = {version = "0.3.5", features = ["compat", "io-compat"]}
[features]
stable = []
trace = []