mirror of
https://github.com/nushell/nushell.git
synced 2024-11-30 04:14:17 +01:00
0f4a073eaf
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
24 lines
574 B
TOML
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"
|