mirror of
https://github.com/nushell/nushell.git
synced 2024-12-27 17:39:15 +01:00
a63a5adafa
* remove unused dependencies * moved umask to cfg(unix) * changed Inflector to inflector, hoping it fixes the issue. * roll back Inflector * removed commented out deps now that everything looks good.
22 lines
514 B
TOML
22 lines
514 B
TOML
[package]
|
|
authors = ["The Nu Project Contributors"]
|
|
description = "Extension traits for values in Nushell"
|
|
edition = "2018"
|
|
license = "MIT"
|
|
name = "nu-value-ext"
|
|
version = "0.19.0"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
nu-errors = {path = "../nu-errors", version = "0.19.0"}
|
|
nu-protocol = {path = "../nu-protocol", version = "0.19.0"}
|
|
nu-source = {path = "../nu-source", version = "0.19.0"}
|
|
|
|
indexmap = { version = "1.6.0", features = ["serde-1"] }
|
|
itertools = "0.9.0"
|
|
num-traits = "0.2.12"
|
|
|
|
[build-dependencies]
|