mirror of
https://github.com/nushell/nushell.git
synced 2024-12-04 06:15:27 +01:00
1c1c58e802
* chore: Replace surf with reqwest Removes a lot of older, duplication versions of some dependencies (roughtly 90 dependencies removed in total) * chore: Remove syn 0.11 * chore: Remove unnecessary features from ptree Removes some more duplicate dependencies * cargo update * Ensure we run the fetch and post plugins on the tokio runtime * Fix clippy warning * fix: Github requires a user agent on requests Co-authored-by: Darren Schroeder <343840+fdncred@users.noreply.github.com>
22 lines
542 B
TOML
22 lines
542 B
TOML
[package]
|
|
authors = ["The Nu Project Contributors"]
|
|
description = "Tree viewer plugin for Nushell"
|
|
edition = "2018"
|
|
license = "MIT"
|
|
name = "nu_plugin_tree"
|
|
version = "0.36.1"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
derive-new = "0.5.8"
|
|
nu-errors = { path="../nu-errors", version = "0.36.1" }
|
|
nu-plugin = { path="../nu-plugin", version = "0.36.1" }
|
|
nu-protocol = { path="../nu-protocol", version = "0.36.1" }
|
|
nu-source = { path="../nu-source", version = "0.36.1" }
|
|
ptree = { version = "0.3.1", default-features = false }
|
|
|
|
|
|
[build-dependencies]
|