assertr 0.4.4

Fluent assertions for the Rust programming language.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

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

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

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

[[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"

[dependencies.assertr-derive]
version = "0.2.0"
optional = true

[dependencies.futures]
version = "0.3.31"

[dependencies.http]
version = "1.3.1"
optional = true

[dependencies.indoc]
version = "2.0.5"

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

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

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

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

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

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

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

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

[dependencies.which]
version = "8.0.0"
features = ["real-sys"]
optional = true
default-features = false

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

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