mirror of
https://github.com/imjasonh/testscript-rs
synced 2026-07-18 14:46:25 +00:00
improve error reporting
Signed-off-by: Jason Hall <imjasonh@gmail.com>
This commit is contained in:
parent
424dcaf170
commit
8b267451de
5 changed files with 478 additions and 54 deletions
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "testscript-rs"
|
||||
version = "0.2.10"
|
||||
version = "0.2.11"
|
||||
edition = "2021"
|
||||
authors = ["Jason Hall"]
|
||||
license = "Apache-2.0"
|
||||
|
|
@ -15,6 +15,12 @@ thiserror = "2.0"
|
|||
tempfile = "3.0"
|
||||
walkdir = "2.0"
|
||||
regex = "1.0"
|
||||
termcolor = { version = "1.4", optional = true }
|
||||
atty = { version = "0.2", optional = true }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
colors = ["termcolor", "atty"]
|
||||
|
||||
[dev-dependencies]
|
||||
arbitrary = { version = "1.0", features = ["derive"] }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue