2021-01-10 02:50:49 +00:00
|
|
|
[package]
|
2022-02-07 19:11:34 +00:00
|
|
|
<<<<<<< HEAD
|
2021-01-10 02:50:49 +00:00
|
|
|
authors = ["The Nu Project Contributors"]
|
|
|
|
description = "Core commands for nushell"
|
|
|
|
edition = "2018"
|
|
|
|
license = "MIT"
|
|
|
|
name = "nu-engine"
|
2022-01-18 17:06:12 +00:00
|
|
|
version = "0.43.0"
|
2021-01-10 02:50:49 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-01-18 17:06:12 +00:00
|
|
|
nu-data = { version = "0.43.0", path="../nu-data" }
|
|
|
|
nu-errors = { version = "0.43.0", path="../nu-errors" }
|
|
|
|
nu-parser = { version = "0.43.0", path="../nu-parser" }
|
|
|
|
nu-plugin = { version = "0.43.0", path="../nu-plugin" }
|
|
|
|
nu-protocol = { version = "0.43.0", path="../nu-protocol" }
|
|
|
|
nu-source = { version = "0.43.0", path="../nu-source" }
|
|
|
|
nu-stream = { version = "0.43.0", path="../nu-stream" }
|
|
|
|
nu-value-ext = { version = "0.43.0", path="../nu-value-ext" }
|
|
|
|
nu-ansi-term = { version = "0.43.0", path="../nu-ansi-term" }
|
|
|
|
nu-test-support = { version = "0.43.0", path="../nu-test-support" }
|
|
|
|
nu-path = { version = "0.43.0", path="../nu-path" }
|
2021-01-10 02:50:49 +00:00
|
|
|
|
2021-11-20 13:11:11 +00:00
|
|
|
trash = { version = "2.0.2", optional = true }
|
2021-06-19 00:06:44 +00:00
|
|
|
which = { version="4.0.2", optional=true }
|
2021-03-12 05:20:54 +00:00
|
|
|
codespan-reporting = "0.11.0"
|
2021-11-20 13:11:11 +00:00
|
|
|
bigdecimal = { package = "bigdecimal", version = "0.3.0", features = ["serde"] }
|
2021-11-14 06:32:21 +00:00
|
|
|
bytes = "1.1.0"
|
2021-06-19 00:06:44 +00:00
|
|
|
chrono = { version="0.4.19", features=["serde"] }
|
2021-01-10 02:50:49 +00:00
|
|
|
derive-new = "0.5.8"
|
2021-06-18 23:29:29 +00:00
|
|
|
dirs-next = "2.0.0"
|
2021-02-05 20:54:54 +00:00
|
|
|
encoding_rs = "0.8.28"
|
2021-01-10 02:50:49 +00:00
|
|
|
filesize = "0.2.0"
|
|
|
|
fs_extra = "1.2.0"
|
|
|
|
getset = "0.1.1"
|
|
|
|
glob = "0.3.0"
|
2021-06-19 00:06:44 +00:00
|
|
|
indexmap = { version="1.6.1", features=["serde-1"] }
|
2021-01-10 02:50:49 +00:00
|
|
|
itertools = "0.10.0"
|
2021-06-19 00:06:44 +00:00
|
|
|
lazy_static = "1.*"
|
2021-02-05 20:54:54 +00:00
|
|
|
log = "0.4.14"
|
2021-11-20 13:11:11 +00:00
|
|
|
num-bigint = { version="0.4.3", features=["serde"] }
|
2021-02-05 20:54:54 +00:00
|
|
|
parking_lot = "0.11.1"
|
|
|
|
rayon = "1.5.0"
|
2021-06-19 00:06:44 +00:00
|
|
|
serde = { version="1.0.123", features=["derive"] }
|
2021-02-05 20:54:54 +00:00
|
|
|
serde_json = "1.0.61"
|
|
|
|
tempfile = "3.2.0"
|
2021-01-11 04:58:15 +00:00
|
|
|
term_size = "0.3.2"
|
2021-02-05 20:54:54 +00:00
|
|
|
termcolor = "1.1.2"
|
2021-01-10 02:50:49 +00:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
umask = "1.0.0"
|
2021-02-05 20:54:54 +00:00
|
|
|
users = "0.11.0"
|
2021-01-10 02:50:49 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-01-18 17:06:12 +00:00
|
|
|
nu-test-support = { version = "0.43.0", path="../nu-test-support" }
|
2021-03-15 07:26:30 +00:00
|
|
|
hamcrest2 = "0.3.0"
|
2021-01-13 17:31:47 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
rustyline-support = []
|
2021-03-09 09:34:14 +00:00
|
|
|
trash-support = ["trash"]
|
2021-06-10 21:39:51 +00:00
|
|
|
dataframe = ["nu-protocol/dataframe"]
|
2022-02-07 19:11:34 +00:00
|
|
|
=======
|
2021-08-10 18:51:08 +00:00
|
|
|
name = "nu-engine"
|
|
|
|
version = "0.1.0"
|
2022-01-20 13:13:45 +00:00
|
|
|
edition = "2021"
|
2021-08-10 18:51:08 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-12-02 06:35:32 +00:00
|
|
|
nu-protocol = { path = "../nu-protocol", features = ["plugin"] }
|
2021-10-09 01:02:01 +00:00
|
|
|
nu-path = { path = "../nu-path" }
|
2021-10-20 05:58:25 +00:00
|
|
|
itertools = "0.10.1"
|
2021-12-02 06:35:32 +00:00
|
|
|
chrono = { version="0.4.19", features=["serde"] }
|
2022-01-24 18:26:56 +00:00
|
|
|
glob = "0.3.0"
|
2021-12-02 06:35:32 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
plugin = []
|
2022-02-07 19:11:34 +00:00
|
|
|
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
|