mirror of
https://github.com/nushell/nushell
synced 2025-01-08 03:09:00 +00:00
88555860f3
* fetch content from s3 resource * remove submodule * fix clippy * update Cargo.lock * fix s3 plugin dependency version
20 lines
550 B
TOML
20 lines
550 B
TOML
[package]
|
|
name = "nu_plugin_s3"
|
|
version = "0.18.1"
|
|
authors = ["The Nu Project Contributors"]
|
|
edition = "2018"
|
|
description = "An S3 plugin for Nushell"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
nu-plugin = { path = "../nu-plugin", version = "0.18.1" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.18.1" }
|
|
nu-source = { path = "../nu-source", version = "0.18.1" }
|
|
nu-errors = { path = "../nu-errors", version = "0.18.1" }
|
|
futures = { version = "0.3", features = ["compat", "io-compat"] }
|
|
s3handler = "0.5.0"
|
|
|
|
[build-dependencies]
|