[package]
edition = "2021"
rust-version = "1.82"
name = "rtb-app"
version = "0.6.0"
authors = ["Matt Cockayne <matt@phpboyscout.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust Tool Base — application context, tool metadata, runtime features, and the Command plugin trait."
homepage = "https://rtb.phpboyscout.uk"
documentation = "https://rtb.phpboyscout.uk"
readme = "README.md"
keywords = [
"cli",
"framework",
"scaffolding",
"ai",
"mcp",
]
categories = [
"command-line-interface",
"development-tools",
]
license = "MIT"
repository = "https://gitlab.com/phpboyscout/rust-tool-base"
[lib]
name = "rtb_app"
path = "src/lib.rs"
[[test]]
name = "bdd"
path = "tests/bdd.rs"
[[test]]
name = "credentials_provider"
path = "tests/credentials_provider.rs"
[[test]]
name = "trybuild"
path = "tests/trybuild.rs"
[[test]]
name = "typed_config"
path = "tests/typed_config.rs"
[[test]]
name = "unit"
path = "tests/unit.rs"
[[test]]
name = "v0_4_additions"
path = "tests/v0_4_additions.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.bon]
version = "3"
[dependencies.linkme]
version = "0.3"
[dependencies.miette]
version = "7"
features = ["fancy"]
[dependencies.rtb-assets]
version = "0.6.0"
[dependencies.rtb-config]
version = "0.6.0"
[dependencies.rtb-credentials]
version = "0.6.0"
[dependencies.rtb-error]
version = "0.6.0"
[dependencies.schemars]
version = "1"
[dependencies.semver]
version = "1"
features = ["serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dev-dependencies.cucumber]
version = "0.21"
features = ["macros"]
[dev-dependencies.insta]
version = "1"
features = [
"yaml",
"json",
]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1.47"
features = ["full"]
[dev-dependencies.trybuild]
version = "1"
[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"