[package]
edition = "2021"
name = "tishlang_test"
version = "3.7.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native tish test runner, expect, and Node-compatible assert"
readme = false
license-file = "LICENSE"
repository = "https://github.com/tishlang/tish"
[features]
default = [
"fs",
"regex",
"promise",
]
fs = [
"tishlang_runtime/fs",
"tishlang_eval/fs",
"tishlang_vm/fs",
]
promise = [
"tishlang_runtime/promise",
"tishlang_vm/promise",
]
regex = [
"tishlang_core/regex",
"tishlang_runtime/regex",
"tishlang_eval/regex",
"tishlang_vm/regex",
]
runner = [
"dep:tishlang_compile",
"dep:tishlang_opt",
"dep:tishlang_bytecode",
"dep:tishlang_vm",
"dep:tishlang_ast",
"dep:tishlang_eval",
]
watch = ["dep:notify"]
[lib]
name = "tishlang_test"
path = "src/lib.rs"
[dependencies.notify]
version = "7"
optional = true
[dependencies.regex]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.tishlang_ast]
version = ">=0.1"
optional = true
[dependencies.tishlang_builtins]
version = ">=0.1"
[dependencies.tishlang_bytecode]
version = ">=0.1"
optional = true
[dependencies.tishlang_compile]
version = ">=0.1"
optional = true
[dependencies.tishlang_core]
version = ">=0.1"
[dependencies.tishlang_eval]
version = ">=0.1"
optional = true
[dependencies.tishlang_opt]
version = ">=0.1"
optional = true
[dependencies.tishlang_runtime]
version = ">=0.1"
[dependencies.tishlang_vm]
version = ">=0.1"
optional = true
[dependencies.walkdir]
version = "2"
[dev-dependencies.tempfile]
version = "3"