nushell/crates/nu_plugin_fetch/Cargo.toml

24 lines
642 B
TOML
Raw Normal View History

2019-12-07 04:46:05 +01:00
[package]
name = "nu_plugin_fetch"
2020-06-30 20:25:09 +02:00
version = "0.16.0"
authors = ["The Nu Project Contributors"]
2019-12-07 04:46:05 +01:00
edition = "2018"
description = "A URL fetch 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-06-30 20:25:09 +02:00
nu-plugin = { path = "../nu-plugin", version = "0.16.0" }
nu-protocol = { path = "../nu-protocol", version = "0.16.0" }
nu-source = { path = "../nu-source", version = "0.16.0" }
nu-errors = { path = "../nu-errors", version = "0.16.0" }
futures = { version = "0.3", features = ["compat", "io-compat"] }
surf = "1.0.3"
url = "2.1.1"
2020-06-27 09:54:31 +02:00
base64 = "0.12.3"
2019-12-07 04:46:05 +01:00
[build-dependencies]
2020-06-30 20:25:09 +02:00
nu-build = { version = "0.16.0", path = "../nu-build" }