double-trait 0.2.10

A procedural macro to derive a mirror of a trait designed to make it easier to implement test doubles.
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"
name = "double-trait"
version = "0.2.10"
authors = ["Markus Klein"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A procedural macro to derive a mirror of a trait designed to make it easier to implement test doubles."
readme = "README.md"
keywords = [
    "testing",
    "double",
]
categories = ["rust-patterns"]
license = "MIT"
repository = "https://github.com/pacman82/double-trait"
resolver = "2"

[features]
default = []
stream = [
    "dep:futures-util",
    "double-derive/stream",
]

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

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

[dependencies.double-derive]
version = "0.2.10"

[dependencies.futures-util]
version = ">= 0.3, < 0.4"
optional = true

[dev-dependencies.async-trait]
version = "0.1.89"

[dev-dependencies.tokio]
version = "1.52.3"
features = [
    "rt",
    "macros",
]