nushell/crates/nu_plugin_start/Cargo.toml
Arash Outadi ecb67fee40
ISSUE-1744-Glob support for start command (#1912)
* Possible implementation of globbing for start command

* Whoops forgot to remove Error used for debugging

* Use string lossy

* Run clippy

* Pin glob

* Better error messages

* Remove unneeded comment
2020-05-31 05:41:25 +12:00

24 lines
706 B
TOML

[package]
name = "nu_plugin_start"
version = "0.1.0"
authors = ["The Nu Project Contributors"]
edition = "2018"
description = "A plugin to open files/URLs directly from Nushell"
license = "MIT"
[lib]
doctest = false
[dependencies]
nu-plugin = { path = "../nu-plugin", version = "0.14.1" }
nu-protocol = { path = "../nu-protocol", version = "0.14.1" }
nu-source = { path = "../nu-source", version = "0.14.1" }
nu-errors = { path = "../nu-errors", version = "0.14.1" }
url = "2.1.1"
open = "1.4.0"
glob = "0.3.0"
[build-dependencies]
nu-build = { version = "0.14.1", path = "../nu-build" }
nu-errors = { version = "0.14.1", path = "../nu-errors" }
nu-source = { version = "0.14.1", path = "../nu-source" }