[package]
edition = "2021"
rust-version = "1.75"
name = "taut-rpc-cli"
version = "0.1.0"
authors = ["taut-rpc contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "cargo taut subcommand: TS codegen, IR drift detection, MCP manifest, and IR inspection for taut-rpc."
homepage = "https://github.com/nktkt/taut-rpc"
documentation = "https://docs.rs/taut-rpc-cli"
readme = false
keywords = [
"taut-rpc",
"rpc",
"codegen",
"cli",
"typescript",
]
categories = [
"command-line-utilities",
"development-tools::cargo-plugins",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nktkt/taut-rpc"
[lib]
name = "taut_rpc_cli"
path = "src/lib.rs"
[[bin]]
name = "cargo-taut"
path = "src/main.rs"
[[test]]
name = "cli_lib_smoke"
path = "tests/cli_lib_smoke.rs"
[[test]]
name = "ir_version_mismatch"
path = "tests/ir_version_mismatch.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.taut-rpc]
version = "0.1.0"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"
[lints.rust.unused]
level = "warn"
priority = -1