2019-12-15 17:15:06 +01:00
|
|
|
[package]
|
2022-03-13 19:30:27 +01:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2020-10-14 11:45:32 +02:00
|
|
|
description = "Support for writing Nushell tests"
|
2022-08-14 14:21:20 +02:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-test-support"
|
2023-01-05 13:24:42 +01:00
|
|
|
edition = "2021"
|
2019-12-15 17:15:06 +01:00
|
|
|
license = "MIT"
|
2020-07-05 22:12:44 +02:00
|
|
|
name = "nu-test-support"
|
2024-10-20 23:12:41 +02:00
|
|
|
version = "0.99.2"
|
2019-12-15 17:15:06 +01:00
|
|
|
|
2019-12-29 06:17:24 +01:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
2023-02-12 23:22:00 +01:00
|
|
|
bench = false
|
2019-12-15 17:15:06 +01:00
|
|
|
|
2024-08-28 23:37:17 +02:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2019-12-15 17:15:06 +01:00
|
|
|
[dependencies]
|
2024-10-20 23:12:41 +02:00
|
|
|
nu-path = { path = "../nu-path", version = "0.99.2" }
|
|
|
|
nu-glob = { path = "../nu-glob", version = "0.99.2" }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.99.2" }
|
2020-01-16 10:05:53 +01:00
|
|
|
|
2024-03-24 00:46:02 +01:00
|
|
|
num-format = { workspace = true }
|
2024-03-07 23:40:31 +01:00
|
|
|
which = { workspace = true }
|
2024-10-15 21:01:08 +02:00
|
|
|
tempfile = { workspace = true }
|