mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
ecb67fee40
* 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
24 lines
706 B
TOML
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" } |