nushell/crates/nu-test-support/Cargo.toml
Jérémy Audiger 0f4a073eaf
Remove once_cell dependency from nu-test-support create. (#8568)
I was looking where we could remove the usage of once-cell dependency.
As for now, I only found one place. Not a terrible improvement, but at
least, it removes a dependency nu-test-support crate.

Relies on `Mutex::new` constified in Rust 1.63.0
2023-03-22 19:36:52 +01:00

24 lines
574 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.2"
[lib]
doctest = false
bench = false
[dependencies]
nu-path = { path="../nu-path", version = "0.77.2" }
nu-glob = { path = "../nu-glob", version = "0.77.2" }
nu-utils = { path="../nu-utils", version = "0.77.2" }
num-format = "0.4.3"
which = "4.3.0"
getset = "0.1.1"
tempfile = "3.2.0"
hamcrest2 = "0.3.0"