mirror of
https://github.com/nushell/nushell
synced 2024-11-14 00:47:09 +00:00
25 lines
686 B
TOML
25 lines
686 B
TOML
[package]
|
|
name = "nu_plugin_post"
|
|
version = "0.15.0"
|
|
authors = ["The Nu Project Contributors"]
|
|
edition = "2018"
|
|
description = "An HTTP post plugin for Nushell"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
nu-plugin = { path = "../nu-plugin", version = "0.15.0" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.15.0" }
|
|
nu-source = { path = "../nu-source", version = "0.15.0" }
|
|
nu-errors = { path = "../nu-errors", version = "0.15.0" }
|
|
futures = { version = "0.3", features = ["compat", "io-compat"] }
|
|
surf = "1.0.3"
|
|
url = "2.1.1"
|
|
serde_json = "1.0.53"
|
|
base64 = "0.12.1"
|
|
num-traits = "0.2.11"
|
|
|
|
[build-dependencies]
|
|
nu-build = { version = "0.15.0", path = "../nu-build" }
|