[package]
name = "omni-dev"
version = "0.18.0"
edition = "2021"
authors = ["John Ky <newhoggy@gmail.com>"]
license = "BSD-3-Clause"
description = "A powerful Git commit message analysis and amendment toolkit"
repository = "https://github.com/rust-works/omni-dev"
homepage = "https://github.com/rust-works/omni-dev"
documentation = "https://docs.rs/omni-dev"
readme = "README.md"
keywords = ["git", "commit", "conventional-commits", "development", "cli"]
categories = ["development-tools", "command-line-utilities"]
rust-version = "1.80.0"
[dependencies]
clap = { version = "4.5", features = ["derive", "color"] }
git2 = "0.20"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
ssh2-config = "0.7"
yaml-rust-davvid = "0.6"
serde_json = "1.0"
termcolor = "1.1"
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
tempfile = "3.25"
reqwest = { version = "0.13", features = ["json"] }
tokio = { version = "1.49", features = ["full"] }
thiserror = "2.0"
regex = "1.12.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
dirs = "6.0.0"
globset = "0.4"
crossterm = "0.29"
url = "2.5.8"
futures = "0.3"
[dev-dependencies]
tempfile = "3.25"
insta = "1.46"
proptest = "1"
[lib]
name = "omni_dev"
path = "src/lib.rs"
[[bin]]
name = "omni-dev"
path = "src/main.rs"
required-features = []
[lints.rust]
unsafe_code = "deny"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
must_use_candidate = "allow"
module_name_repetitions = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
doc_markdown = "allow"
unused_self = "allow"
unnecessary_wraps = "allow"
needless_pass_by_value = "allow"
ref_option = "allow"
if_not_else = "allow"
similar_names = "allow"
too_many_lines = "allow"
format_push_string = "allow"
unused_async = "allow"
items_after_statements = "allow"
struct_field_names = "allow"
struct_excessive_bools = "allow"
cast_precision_loss = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
case_sensitive_file_extension_comparisons = "allow"
unwrap_used = "warn"
expect_used = "warn"
option_if_let_else = "allow"
redundant_pub_crate = "allow"
missing_const_for_fn = "allow"
or_fun_call = "allow"
significant_drop_tightening = "allow"