1
0
Fork 0
mirror of https://github.com/imjasonh/testscript-rs synced 2026-07-08 17:16:38 +00:00
testscript-rs/Cargo.toml
Jason Hall 90cc92fffe
feat: Add Go testscript compatibility for stdout/stderr commands (#45)
- Add @R syntax for regex quoting in environment variables (${VAR@R})
- Add -count=N option support for stdout/stderr commands
- Fix empty quoted string parsing in command tokenization
- Add comprehensive test coverage for stdout/stderr matching behavior

Signed-off-by: Jason Hall <imjasonh@gmail.com>
2026-01-01 18:28:39 +00:00

20 lines
550 B
TOML

[package]
name = "testscript-rs"
version = "0.2.10"
edition = "2021"
authors = ["Jason Hall"]
license = "Apache-2.0"
description = "A Rust crate for testing command-line tools using filesystem-based script files"
repository = "https://github.com/imjasonh/testscript-rs"
keywords = ["testing", "cli", "testscript", "integration-tests"]
categories = ["development-tools::testing"]
[dependencies]
anyhow = "1.0"
thiserror = "2.0"
tempfile = "3.0"
walkdir = "2.0"
regex = "1.0"
[dev-dependencies]
arbitrary = { version = "1.0", features = ["derive"] }