cargo-features = ["codegen-backend"]
[package]
edition = "2024"
name = "v_fixtures"
version = "0.3.4"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Test fixture utilities for inline multi-file test cases with //- /path syntax"
readme = "README.md"
keywords = [
"testing",
"fixtures",
"snapshot",
"test-utils",
]
categories = ["development-tools::testing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/valeratrades/v_fixtures"
[package.metadata.docs.rs]
cargo-args = [
"-Zunstable-options",
"-Zrustdoc-scrape-examples",
]
[lib]
name = "v_fixtures"
path = "src/lib.rs"
[dependencies.derive-new]
version = "0"
[dependencies.regex]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.walkdir]
version = "2"
[dev-dependencies.insta]
version = "1"
[target."cfg(unix)".dependencies.nix]
version = "0.30"
features = ["fs"]
[lints.clippy]
tabs_in_doc_comments = "allow"