summaryrefslogtreecommitdiff
path: root/crates/nu-test-support/Cargo.toml
blob: 3a8eca182e9bc0c5dcd718d5a7098138c9fa8592 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
authors = ["The Nu Project Contributors"]
description = "Support for writing Nushell tests"
edition = "2018"
license = "MIT"
name = "nu-test-support"
version = "0.25.0"

[lib]
doctest = false

[dependencies]
nu-errors = {version = "0.25.0", path = "../nu-errors"}
nu-protocol = {path = "../nu-protocol", version = "0.25.0"}
nu-source = {path = "../nu-source", version = "0.25.0"}
nu-value-ext = {version = "0.25.0", path = "../nu-value-ext"}

bigdecimal = {version = "0.2.0", features = ["serde"]}
chrono = "0.4.15"
dunce = "1.0.1"
getset = "0.1.1"
glob = "0.3.0"
indexmap = {version = "1.6.0", features = ["serde-1"]}
num-bigint = {version = "0.3.0", features = ["serde"]}
tempfile = "3.1.0"

[build-dependencies]