nushell/crates/nu_plugin_post/Cargo.toml

30 lines
679 B
TOML
Raw Normal View History

2019-12-07 03:46:05 +00:00
[package]
authors = ["The Nu Project Contributors"]
description = "An HTTP post plugin for Nushell"
2020-07-05 20:12:44 +00:00
edition = "2018"
license = "MIT"
2020-07-05 20:12:44 +00:00
name = "nu_plugin_post"
2021-06-23 07:57:41 +00:00
version = "0.33.1"
2019-12-07 03:46:05 +00:00
[lib]
doctest = false
2019-12-07 03:46:05 +00:00
[dependencies]
2021-02-05 20:54:54 +00:00
base64 = "0.13.0"
2021-06-22 05:22:33 +00:00
futures = { version="0.3.5", features=["compat", "io-compat"] }
mime = "0.3.16"
2021-06-23 07:57:41 +00:00
nu-errors = { path="../nu-errors", version="0.33.1" }
nu-plugin = { path="../nu-plugin", version="0.33.1" }
nu-protocol = { path="../nu-protocol", version="0.33.1" }
nu-source = { path="../nu-source", version="0.33.1" }
2020-06-27 07:54:31 +00:00
num-traits = "0.2.12"
2020-09-08 22:35:45 +00:00
serde_json = "1.0.57"
surf = "2.2.0"
2020-07-05 20:12:44 +00:00
url = "2.1.1"
2019-12-07 03:46:05 +00:00
2021-05-13 09:49:46 +00:00
[features]
dataframe = ["nu-protocol/dataframe"]
2019-12-07 03:46:05 +00:00
[build-dependencies]