[package]
edition = "2021"
name = "runtimo-cli"
version = "0.5.0"
authors = ["Moe Shawky"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for the Runtimo capability runtime — run, list, status, logs, undo, telemetry, processes"
readme = false
license = "MIT"
repository = "https://github.com/moeshawky/runtimo"
[[bin]]
name = "runtimo"
path = "src/main.rs"
[dependencies.clap]
version = "4.0"
features = ["derive"]
[dependencies.runtimo-core]
version = "0.5"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[lints.clippy]
arithmetic_side_effects = "warn"
cast_lossless = "allow"
cast_possible_truncation = "warn"
cast_possible_wrap = "warn"
cast_precision_loss = "warn"
derive_partial_eq_without_eq = "warn"
doc_markdown = "allow"
doc_paragraphs_missing_punctuation = "allow"
exhaustive_enums = "warn"
exhaustive_structs = "warn"
expect_used = "warn"
float_cmp = "warn"
indexing_slicing = "warn"
map_err_ignore = "deny"
min_ident_chars = "allow"
missing_const_for_fn = "allow"
missing_docs_in_private_items = "allow"
missing_errors_doc = "warn"
missing_inline_in_public_items = "allow"
missing_panics_doc = "warn"
module_name_repetitions = "allow"
must_use_candidate = "warn"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
redundant_closure_for_method_calls = "allow"
significant_drop_tightening = "allow"
similar_names = "allow"
undocumented_unsafe_blocks = "deny"
uninlined_format_args = "allow"
unnecessary_wraps = "allow"
unreadable_literal = "allow"
unused_result_ok = "warn"
unwrap_used = "warn"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1