[package]
edition = "2021"
rust-version = "1.82"
name = "rtb-test-support"
version = "0.7.1"
authors = ["Matt Cockayne <matt@phpboyscout.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Test-only helpers for constructing App contexts without the full rtb-cli wiring. Part of the phpboyscout Rust toolkit."
homepage = "https://app.rust.phpboyscout.uk"
documentation = "https://docs.rs/rtb-test-support"
readme = "README.md"
keywords = [
"cli",
"framework",
"testing",
"test-support",
]
categories = ["development-tools::testing"]
license = "MIT"
repository = "https://gitlab.com/phpboyscout/rust/app"
[lib]
name = "rtb_test_support"
path = "src/lib.rs"
[[test]]
name = "unit"
path = "tests/unit.rs"
[dependencies.rtb-app]
version = "0.7.1"
[dependencies.rtb-assets]
version = "0.6.0"
[dependencies.rtb-config]
version = "0.6.0"
[dependencies.schemars]
version = "1.2.1"
[dependencies.semver]
version = "1.0.28"
features = ["serde"]
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"