mirror of
https://github.com/nushell/nushell.git
synced 2024-12-29 02:19:44 +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>
31 lines
747 B
TOML
31 lines
747 B
TOML
[package]
|
|
authors = ["The Nu Project Contributors"]
|
|
description = "An HTTP post plugin for Nushell"
|
|
edition = "2018"
|
|
license = "MIT"
|
|
name = "nu_plugin_post"
|
|
version = "0.36.1"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
base64 = "0.13.0"
|
|
futures = { version="0.3.5", features=["compat", "io-compat"] }
|
|
mime = "0.3.16"
|
|
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" }
|
|
num-traits = "0.2.12"
|
|
serde_json = "1.0.57"
|
|
reqwest = "0.11"
|
|
tokio = { version = "1", features = ["rt-multi-thread"] }
|
|
url = "2.1.1"
|
|
|
|
[features]
|
|
dataframe = ["nu-protocol/dataframe"]
|
|
|
|
|
|
[build-dependencies]
|