forked from extern/nushell
1701303279
# Description Either to be used in an emergency point release or to indicate development builds in the `version` command
25 lines
595 B
TOML
25 lines
595 B
TOML
[package]
|
|
authors = ["The Nushell Project Developers"]
|
|
description = "Support for writing Nushell tests"
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-test-support"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "nu-test-support"
|
|
version = "0.77.1"
|
|
|
|
[lib]
|
|
doctest = false
|
|
bench = false
|
|
|
|
[dependencies]
|
|
nu-path = { path="../nu-path", version = "0.77.1" }
|
|
nu-glob = { path = "../nu-glob", version = "0.77.1" }
|
|
nu-utils = { path="../nu-utils", version = "0.77.1" }
|
|
once_cell = "1.16.0"
|
|
num-format = "0.4.3"
|
|
which = "4.3.0"
|
|
|
|
getset = "0.1.1"
|
|
tempfile = "3.2.0"
|
|
hamcrest2 = "0.3.0"
|