mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
52cb865c5c
2 crates were still using Rust 2018, including the base `nu` crate. This PR upgrades them to Rust 2021. If you're aware of any reason why this is a bad idea, please speak now or forever hold your peace. ## Context I was moving benchmarks from `nu-plugin` to the base crate and couldn't figure out why they wouldn't compile. Turns out the benchmarks rely on some Rust 2021 features. Would be nice to have everything on 2021.
23 lines
565 B
TOML
23 lines
565 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.73.1"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
nu-path = { path="../nu-path", version = "0.73.1" }
|
|
nu-glob = { path = "../nu-glob", version = "0.73.1" }
|
|
nu-utils = { path="../nu-utils", version = "0.73.1" }
|
|
once_cell = "1.16.0"
|
|
num-format = "0.4.3"
|
|
|
|
getset = "0.1.1"
|
|
tempfile = "3.2.0"
|
|
hamcrest2 = "0.3.0"
|