2024-03-23 19:29:54 +01:00
|
|
|
[package]
|
|
|
|
name = "nu-plugin-test-support"
|
2024-06-05 00:52:40 +02:00
|
|
|
version = "0.94.3"
|
2024-03-23 19:29:54 +01:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
2024-04-03 15:33:18 +02:00
|
|
|
description = "Testing support for Nushell plugins"
|
2024-03-23 19:29:54 +01:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin-test-support"
|
|
|
|
|
2024-04-27 19:08:12 +02:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2024-03-23 19:29:54 +01:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-05 00:52:40 +02:00
|
|
|
nu-engine = { path = "../nu-engine", version = "0.94.3", features = ["plugin"] }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.94.3", features = ["plugin"] }
|
|
|
|
nu-parser = { path = "../nu-parser", version = "0.94.3", features = ["plugin"] }
|
|
|
|
nu-plugin = { path = "../nu-plugin", version = "0.94.3" }
|
|
|
|
nu-plugin-core = { path = "../nu-plugin-core", version = "0.94.3" }
|
|
|
|
nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.94.3" }
|
|
|
|
nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.94.3" }
|
|
|
|
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.94.3" }
|
2024-03-26 03:13:12 +01:00
|
|
|
nu-ansi-term = { workspace = true }
|
2024-04-07 23:50:11 +02:00
|
|
|
similar = "2.5"
|
2024-03-23 19:29:54 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
typetag = "0.2"
|
2024-06-05 00:52:40 +02:00
|
|
|
serde = "1.0"
|