2019-12-09 18:39:51 +00:00
|
|
|
[package]
|
|
|
|
name = "nu_plugin_match"
|
2020-06-30 18:25:09 +00:00
|
|
|
version = "0.16.0"
|
2020-04-06 07:16:14 +00:00
|
|
|
authors = ["The Nu Project Contributors"]
|
2019-12-09 18:39:51 +00:00
|
|
|
edition = "2018"
|
2019-12-17 17:07:00 +00:00
|
|
|
description = "A regex match plugin for Nushell"
|
|
|
|
license = "MIT"
|
2019-12-09 18:39:51 +00:00
|
|
|
|
2020-02-10 20:32:10 +00:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2019-12-09 18:39:51 +00:00
|
|
|
[dependencies]
|
2020-06-30 18:25:09 +00:00
|
|
|
nu-plugin = { path = "../nu-plugin", version = "0.16.0" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.16.0" }
|
|
|
|
nu-source = { path = "../nu-source", version = "0.16.0" }
|
|
|
|
nu-errors = { path = "../nu-errors", version = "0.16.0" }
|
2020-02-06 04:28:42 +00:00
|
|
|
futures = { version = "0.3", features = ["compat", "io-compat"] }
|
2019-12-09 18:39:51 +00:00
|
|
|
regex = "1"
|
|
|
|
|
|
|
|
[build-dependencies]
|
2020-06-30 18:25:09 +00:00
|
|
|
nu-build = { version = "0.16.0", path = "../nu-build" }
|