nushell/crates/nu_plugin_post/Cargo.toml

26 lines
686 B
TOML
Raw Normal View History

2019-12-07 04:46:05 +01:00
[package]
name = "nu_plugin_post"
2020-03-31 19:25:21 +02:00
version = "0.12.0"
authors = ["The Nu Project Contributors"]
2019-12-07 04:46:05 +01:00
edition = "2018"
description = "An HTTP post plugin for Nushell"
license = "MIT"
2019-12-07 04:46:05 +01:00
[lib]
doctest = false
2019-12-07 04:46:05 +01:00
[dependencies]
2020-03-31 19:25:21 +02:00
nu-plugin = { path = "../nu-plugin", version = "0.12.0" }
nu-protocol = { path = "../nu-protocol", version = "0.12.0" }
nu-source = { path = "../nu-source", version = "0.12.0" }
nu-errors = { path = "../nu-errors", version = "0.12.0" }
futures = { version = "0.3", features = ["compat", "io-compat"] }
2019-12-07 04:46:05 +01:00
surf = "1.0.3"
url = "2.1.1"
2020-04-07 09:51:17 +02:00
serde_json = "1.0.51"
base64 = "0.12.0"
num-traits = "0.2.11"
2019-12-07 04:46:05 +01:00
[build-dependencies]
2020-03-31 19:25:21 +02:00
nu-build = { version = "0.12.0", path = "../nu-build" }