assertr 0.3.0

Fluent assertions for the Rust programming language.
Documentation
[dependencies.assertr-derive]
optional = true
version = "0.2.0"

[dependencies.indoc]
version = "2.0.5"

[dependencies.jiff]
optional = true
version = "0.2.13"

[dependencies.libm]
optional = true
version = "0.2.11"

[dependencies.num]
default-features = false
optional = true
version = "0.4.3"

[dependencies.reqwest]
optional = true
version = "0.12.12"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0.218"

[dependencies.serde_json]
optional = true
version = "1.0.140"

[dependencies.tokio]
features = ["full"]
optional = true
version = "1.43.0"

[dependencies.toml]
optional = true
version = "0.8.20"

[dev-dependencies.mockito]
version = "1.6.1"

[dev-dependencies.tokio]
features = ["full"]
version = "1.43.0"

[features]
default = ["std", "num"]
derive = ["dep:assertr-derive"]
jiff = ["dep:jiff"]
libm = ["dep:libm", "num/libm"]
num = ["dep:num"]
reqwest = ["dep:reqwest"]
serde = ["dep:serde", "dep:serde_json", "dep:toml"]
std = ["num/std"]
tokio = ["dep:tokio"]

[lib]
name = "assertr"
path = "src/lib.rs"

[package]
authors = ["Lukas Potthast <privat@lukas-potthast.de>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools::testing", "no-std"]
description = """
Fluent assertions for the Rust programming language.
"""
edition = "2024"
keywords = ["assertions", "assert", "assert-that", "testing"]
license = "MIT OR Apache-2.0"
name = "assertr"
readme = "README.md"
repository = "https://github.com/lpotthast/assertr"
rust-version = "1.85.0"
version = "0.3.0"

[[test]]
name = "conditions"
path = "tests/conditions.rs"

[[test]]
name = "conversion"
path = "tests/conversion.rs"

[[test]]
name = "custom_assertions"
path = "tests/custom_assertions.rs"

[[test]]
name = "derive"
path = "tests/derive.rs"

[[test]]
name = "derive_async"
path = "tests/derive_async.rs"

[[test]]
name = "detail_messages"
path = "tests/detail_messages.rs"

[[test]]
name = "map"
path = "tests/map.rs"

[[test]]
name = "map_async"
path = "tests/map_async.rs"