nushell/crates/nu_plugin_start/Cargo.toml

25 lines
649 B
TOML
Raw Normal View History

[package]
authors = ["The Nu Project Contributors"]
description = "A plugin to open files/URLs directly from Nushell"
2020-07-05 22:12:44 +02:00
edition = "2018"
license = "MIT"
2020-07-05 22:12:44 +02:00
name = "nu_plugin_start"
2021-06-23 09:57:41 +02:00
version = "0.33.1"
[lib]
doctest = false
[dependencies]
glob = "0.3.0"
2021-06-23 09:57:41 +02:00
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" }
2020-07-05 22:12:44 +02:00
open = "1.4.0"
2021-02-05 21:54:54 +01:00
url = "2.2.0"
2021-04-24 16:33:17 +02:00
webbrowser = "0.5.5"
[build-dependencies]
2021-06-23 09:57:41 +02:00
nu-errors = { version="0.33.1", path="../nu-errors" }
nu-source = { version="0.33.1", path="../nu-source" }