mirror of
https://github.com/nushell/nushell.git
synced 2024-11-30 04:14:17 +01:00
e06df124ca
* upgrade dependencies num-bigint 0.3.1 -> 0.4.3 bigdecimal-rs 0.2.1 -> bigdecimal 0.3.0 s3hander 0.7 -> 0.7.5 bat 0.18 -> 0.18, default-features = false * upgrade arboard 1.1.0 -> 2.0.1 * in polars use comfy-table instead of prettytable-rs the last release of prettytable-rs was `0.8.0 Sep 27, 2018` and it uses `term 0.5` as a dependency * upgrade dependencies * upgrade trash -> 2.0.1 Co-authored-by: ahkrr <alexhk@protonmail.com>
31 lines
766 B
TOML
31 lines
766 B
TOML
[package]
|
|
authors = ["The Nu Project Contributors"]
|
|
description = "Core error subsystem for Nushell"
|
|
edition = "2018"
|
|
license = "MIT"
|
|
name = "nu-errors"
|
|
version = "0.40.0"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
nu-source = { path="../nu-source", version = "0.40.0" }
|
|
nu-ansi-term = { version = "0.40.0", path="../nu-ansi-term" }
|
|
|
|
bigdecimal = { package = "bigdecimal", version = "0.3.0", features = ["serde"] }
|
|
codespan-reporting = { version="0.11.0", features=["serialization"] }
|
|
derive-new = "0.5.8"
|
|
getset = "0.1.1"
|
|
num-bigint = { version="0.4.3", features=["serde"] }
|
|
num-traits = "0.2.14"
|
|
serde = { version="1.0.123", features=["derive"] }
|
|
|
|
# implement conversions
|
|
glob = "0.3.0"
|
|
serde_json = "1.0.61"
|
|
serde_yaml = "0.8.16"
|
|
toml = "0.5.8"
|
|
|
|
[build-dependencies]
|