nushell/crates/nu_plugin_start/Cargo.toml

27 lines
699 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 20:12:44 +00:00
edition = "2018"
license = "MIT"
2020-07-05 20:12:44 +00:00
name = "nu_plugin_start"
2021-10-26 19:36:41 +00:00
version = "0.39.0"
[lib]
doctest = false
[dependencies]
glob = "0.3.0"
2021-10-26 19:36:41 +00:00
nu-errors = { path="../nu-errors", version = "0.39.0" }
nu-plugin = { path="../nu-plugin", version = "0.39.0" }
nu-protocol = { path="../nu-protocol", version = "0.39.0" }
nu-source = { path="../nu-source", version = "0.39.0" }
2021-02-05 20:54:54 +00:00
url = "2.2.0"
2021-04-24 14:33:17 +00:00
webbrowser = "0.5.5"
[target.'cfg(windows)'.dependencies]
open = "1.4.0"
[build-dependencies]
2021-10-26 19:36:41 +00:00
nu-errors = { version = "0.39.0", path="../nu-errors" }
nu-source = { version = "0.39.0", path="../nu-source" }