2021-08-10 20:51:08 +02:00
|
|
|
[package]
|
|
|
|
name = "nu-parser"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-09-23 01:49:39 +02:00
|
|
|
miette = "3.0.0"
|
2021-09-20 23:37:26 +02:00
|
|
|
thiserror = "1.0.29"
|
2021-11-19 03:51:42 +01:00
|
|
|
serde_json = "1.0"
|
2021-11-18 20:32:27 +01:00
|
|
|
nu-path = {path = "../nu-path"}
|
2021-12-02 06:42:56 +01:00
|
|
|
nu-protocol = { path = "../nu-protocol"}
|
2021-12-03 15:29:55 +01:00
|
|
|
nu-plugin = { path = "../nu-plugin", optional = true }
|
2021-11-02 21:56:00 +01:00
|
|
|
|
|
|
|
[features]
|
2021-12-03 15:29:55 +01:00
|
|
|
plugin = ["nu-plugin"]
|