2019-12-09 19:39:51 +01:00
|
|
|
[package]
|
2020-04-06 09:16:14 +02:00
|
|
|
authors = ["The Nu Project Contributors"]
|
2019-12-17 18:07:00 +01:00
|
|
|
description = "A regex match plugin for Nushell"
|
2020-07-05 22:12:44 +02:00
|
|
|
edition = "2018"
|
2019-12-17 18:07:00 +01:00
|
|
|
license = "MIT"
|
2020-07-05 22:12:44 +02:00
|
|
|
name = "nu_plugin_match"
|
2021-08-03 10:01:09 +02:00
|
|
|
version = "0.35.0"
|
2019-12-09 19:39:51 +01:00
|
|
|
|
2020-02-10 21:32:10 +01:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2019-12-09 19:39:51 +01:00
|
|
|
[dependencies]
|
2021-08-03 10:01:09 +02:00
|
|
|
nu-errors = { path="../nu-errors", version = "0.35.0" }
|
|
|
|
nu-plugin = { path="../nu-plugin", version = "0.35.0" }
|
|
|
|
nu-protocol = { path="../nu-protocol", version = "0.35.0" }
|
|
|
|
nu-source = { path="../nu-source", version = "0.35.0" }
|
2021-02-05 21:54:54 +01:00
|
|
|
regex = "1.4.3"
|
2019-12-09 19:39:51 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|