nushell/crates/nu_plugin_post/Cargo.toml

23 lines
774 B
TOML
Raw Normal View History

2019-12-07 04:46:05 +01:00
[package]
name = "nu_plugin_post"
2020-01-29 03:17:02 +01:00
version = "0.9.0"
2019-12-07 04:46:05 +01:00
authors = ["Yehuda Katz <wycats@gmail.com>", "Jonathan Turner <jonathan.d.turner@gmail.com>", "Andrés N. Robalino <andres@androbtech.com>"]
edition = "2018"
description = "An HTTP post plugin for Nushell"
license = "MIT"
2019-12-07 04:46:05 +01:00
[dependencies]
2020-01-29 03:17:02 +01:00
nu-plugin = { path = "../nu-plugin", version = "0.9.0" }
nu-protocol = { path = "../nu-protocol", version = "0.9.0" }
nu-source = { path = "../nu-source", version = "0.9.0" }
nu-errors = { path = "../nu-errors", version = "0.9.0" }
2019-12-07 04:46:05 +01:00
futures-preview = { version = "=0.3.0-alpha.19", features = ["compat", "io-compat"] }
surf = "1.0.3"
url = "2.1.0"
2019-12-08 18:56:21 +01:00
serde_json = "1.0.44"
2019-12-07 04:46:05 +01:00
base64 = "0.11"
2019-12-08 18:56:21 +01:00
num-traits = "0.2.10"
2019-12-07 04:46:05 +01:00
[build-dependencies]
2020-01-29 03:17:02 +01:00
nu-build = { version = "0.9.0", path = "../nu-build" }