output-tracker 0.1.1

Track and assert state of dependencies in state-based tests without mocks
Documentation
[dependencies.thiserror]
version = "2"

[dev-dependencies.asserting]
version = "0.10"

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.version-sync]
version = "0.9"

[features]
default = []
non-threadsafe = []
threadsafe = []

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

[lints.clippy]
enum_glob_use = "deny"
expect_used = "deny"
future_not_send = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
unwrap_used = "deny"

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
bare_trait_objects = "warn"
deprecated = "warn"
explicit_outlives_requirements = "warn"
missing_docs = "warn"
noop_method_call = "warn"
rust_2021_incompatible_closure_captures = "warn"
rust_2021_incompatible_or_patterns = "warn"
rust_2021_prefixes_incompatible_syntax = "warn"
rust_2021_prelude_collisions = "warn"
single_use_lifetimes = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unsafe_code = "forbid"
unstable_features = "forbid"
unused_crate_dependencies = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_lifetimes = "warn"
unused_qualifications = "warn"
variant_size_differences = "warn"

[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1

[package]
authors = ["haraldmaida"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools::testing", "development-tools::debugging"]
description = """
Track and assert state of dependencies in state-based tests without mocks\r
"""
edition = "2021"
keywords = ["tracking-state", "state-based-tests", "dependencies", "without-mocks", "nullables"]
license = "MIT OR Apache-2.0"
name = "output-tracker"
readme = "README.md"
repository = "https://github.com/innoave/output-tracker.git"
rust-version = "1.78.0"
version = "0.1.1"

[package.metadata.docs.rs]
all-features = true

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

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

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

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