2019-12-07 04:46:05 +01:00
|
|
|
[package]
|
2020-04-06 09:16:14 +02:00
|
|
|
authors = ["The Nu Project Contributors"]
|
2019-12-17 18:07:00 +01:00
|
|
|
description = "An HTTP post plugin for Nushell"
|
2020-07-05 22:12:44 +02:00
|
|
|
edition = "2018"
|
2019-12-17 18:07:00 +01:00
|
|
|
license = "MIT"
|
2020-07-05 22:12:44 +02:00
|
|
|
name = "nu_plugin_post"
|
2021-03-09 11:40:17 +01:00
|
|
|
version = "0.28.0"
|
2019-12-07 04:46:05 +01:00
|
|
|
|
2020-02-10 21:32:10 +01:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2019-12-07 04:46:05 +01:00
|
|
|
[dependencies]
|
2021-02-05 21:54:54 +01:00
|
|
|
base64 = "0.13.0"
|
2021-02-05 07:38:04 +01:00
|
|
|
futures = { version = "0.3.5", features = ["compat", "io-compat"] }
|
2021-03-09 11:40:17 +01:00
|
|
|
nu-errors = { path = "../nu-errors", version = "0.28.0" }
|
|
|
|
nu-plugin = { path = "../nu-plugin", version = "0.28.0" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.28.0" }
|
|
|
|
nu-source = { path = "../nu-source", version = "0.28.0" }
|
2020-06-27 09:54:31 +02:00
|
|
|
num-traits = "0.2.12"
|
2020-09-09 00:35:45 +02:00
|
|
|
serde_json = "1.0.57"
|
2020-07-05 22:12:44 +02:00
|
|
|
surf = "1.0.3"
|
|
|
|
url = "2.1.1"
|
2019-12-07 04:46:05 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|