[package]
edition = "2024"
rust-version = "1.95"
name = "miho"
version = "8.0.2"
authors = ["Andrew Ferreira <andrew.shien2@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Repository management tools"
homepage = "https://github.com/ferreira-tb/miho"
readme = "README.md"
keywords = [
"git",
"repository",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/ferreira-tb/miho"
[[bin]]
name = "miho"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.colored]
version = "3.1"
[dependencies.crossterm]
version = "0.29"
[dependencies.globset]
version = "0.4"
[dependencies.ignore]
version = "0.4"
[dependencies.inquire]
version = "0.9"
[dependencies.itertools]
version = "0.14"
[dependencies.reqwest]
version = "0.13"
features = [
"brotli",
"gzip",
"json",
"rustls",
]
default-features = false
[dependencies.semver]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]
[dependencies.strum]
version = "0.27"
features = ["derive"]
[dependencies.tabled]
version = "0.20"
features = ["ansi"]
[dependencies.tokio]
version = "1.49"
features = ["full"]
[dependencies.toml]
version = "1.0"
features = ["preserve_order"]
[dependencies.toml_edit]
version = "0.25"
[lints.clippy]
clone_on_ref_ptr = "deny"
filetype_is_file = "deny"
map_unwrap_or = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_borrow = "deny"
needless_for_each = "allow"
rc_buffer = "deny"
rc_mutex = "deny"
rest_pat_in_fully_bound_structs = "deny"
similar_names = "allow"
struct_excessive_bools = "allow"
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
async_fn_in_trait = "allow"
unfulfilled_lint_expectations = "deny"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "symbols"