[package]
edition = "2024"
name = "assert-snap"
version = "0.0.1"
authors = ["Atliac"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Snapshot testing and assertion library for Rust"
homepage = "https://github.com/atliac/assert-snap"
documentation = "https://docs.rs/assert-snap"
readme = "README.md"
keywords = [
"snapshot",
"testing",
"assert",
"snap",
]
categories = ["development-tools::testing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/atliac/assert-snap"
[features]
default = ["diff"]
diff = ["dep:similar"]
[lib]
name = "assert_snap"
path = "src/lib.rs"
[dependencies.regex]
version = "1.13.0"
[dependencies.similar]
version = "3.1.1"
optional = true