mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
ce4ae00a6f
* Remove unused dependencies Inspired by #6938 ran `cargo +nightly udeps --features extra`. Removes 2 crates and should remove an unnecessary intra-workspace dependency which might open up further opportunities for compilation. * Make windows-only dependency conditional in toml `omnipath` is only used on Windows and already behind a `#[cfg]` block in the code. Made the dependency in `Cargo.toml` conditional as well. * Make `nu-pretty-hex` example a proper example This allows making `rand` a dev-dependency in this crate.
23 lines
566 B
TOML
23 lines
566 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 = "2018"
|
|
license = "MIT"
|
|
name = "nu-test-support"
|
|
version = "0.70.1"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
nu-path = { path="../nu-path", version = "0.70.1" }
|
|
nu-glob = { path = "../nu-glob", version = "0.70.1" }
|
|
nu-utils = { path="../nu-utils", version = "0.70.1" }
|
|
lazy_static = "1.4.0"
|
|
num-format = "0.4.3"
|
|
|
|
getset = "0.1.1"
|
|
tempfile = "3.2.0"
|
|
hamcrest2 = "0.3.0"
|