[package]
edition = "2021"
rust-version = "1.94"
name = "lethe-cli"
version = "0.9.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for lethe; ships as the `lethe` binary."
readme = "README.md"
license = "MIT"
repository = "https://github.com/teimurjan/lethe"
[[bin]]
name = "lethe"
path = "src/main.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.lethe-core]
version = "0.9.0"
[dependencies.lethe-tui]
version = "0.9.0"
[dependencies.rayon]
version = "1.10"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
explicit_iter_loop = "allow"
float_cmp = "allow"
implicit_hasher = "allow"
items_after_statements = "allow"
let_underscore_untyped = "allow"
many_single_char_names = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
redundant_closure_for_method_calls = "allow"
return_self_not_must_use = "allow"
should_implement_trait = "allow"
similar_names = "allow"
struct_field_names = "allow"
unreadable_literal = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "deny"