mirror of
https://github.com/nushell/nushell
synced 2024-12-29 06:23:11 +00:00
3262ffc1a6
This brings with it a reduction in the number of duplicated dependencies that it has and the overhead it imposes on our build. The number of crates that need to be built for `cargo build --features extra` drops by roughly 50.
20 lines
531 B
TOML
20 lines
531 B
TOML
[package]
|
|
authors = ["The Nu Project Contributors"]
|
|
description = "An S3 plugin for Nushell"
|
|
edition = "2018"
|
|
license = "MIT"
|
|
name = "nu_plugin_s3"
|
|
version = "0.33.1"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
futures = { version="0.3.12", features=["compat", "io-compat"] }
|
|
nu-errors = { path="../nu-errors", version="0.33.1" }
|
|
nu-plugin = { path="../nu-plugin", version="0.33.1" }
|
|
nu-protocol = { path="../nu-protocol", version="0.33.1" }
|
|
nu-source = { path="../nu-source", version="0.33.1" }
|
|
s3handler = "0.7"
|
|
|
|
[build-dependencies]
|