[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.strum]
features = ["derive"]
version = "0.27"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.assert-json-diff]
version = "2.0"
[dev-dependencies.pretty_assertions]
version = "1.4"
[features]
default = []
[lib]
name = "expect_json"
path = "src/lib.rs"
[package]
authors = ["Joseph Lenton <josephlenton@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools::testing", "development-tools"]
description = "For testing "
documentation = "https://docs.rs/expect-json"
edition = "2021"
keywords = ["testing", "test", "json", "serde_json"]
license = "MIT"
name = "expect-json"
readme = "README.md"
repository = "https://github.com/JosephLenton/expect-json"
rust-version = "1.83"
version = "0.2.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[test]]
name = "test_root_array_values"
path = "tests/test_root_array_values.rs"
[[test]]
name = "test_root_boolean_values"
path = "tests/test_root_boolean_values.rs"
[[test]]
name = "test_root_different_types"
path = "tests/test_root_different_types.rs"
[[test]]
name = "test_root_null_values"
path = "tests/test_root_null_values.rs"
[[test]]
name = "test_root_number_values"
path = "tests/test_root_number_values.rs"
[[test]]
name = "test_root_object_values"
path = "tests/test_root_object_values.rs"
[[test]]
name = "test_root_string_values"
path = "tests/test_root_string_values.rs"