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