[package]
name = "dotstate"
version = "0.3.4"
edition = "2021"
authors = ["Serkan Yersen"]
description = "A modern, secure, and user-friendly dotfile manager built with Rust"
license = "MIT"
repository = "https://github.com/serkanyersen/dotstate"
homepage = "https://dotstate.serkan.dev"
documentation = "https://dotstate.serkan.dev/#quickstart"
keywords = ["dotfiles", "tui", "sync", "productivity", "cli"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
[lib]
name = "dotstate"
path = "src/lib.rs"
[dependencies]
ratatui = "0.30"
crossterm = "0.29"
git2 = { version = "0.20", features = ["vendored-openssl"] }
toml = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls"] }
tokio = { version = "1", features = ["full"] }
dirs = "6"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
clap = { version = "4.5", features = ["derive"] }
syntect = "5.1"
chrono = { version = "0.4", features = ["serde"] }
update-informer = { version = "1.1", default-features = false, features = ["github", "reqwest", "rustls-tls"] }
indoc = "2.0.7"
clap_complete = "4.5.65"
[dev-dependencies]
tempfile = "3.10"
[[bin]]
name = "dotstate"
path = "src/main.rs"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
items_after_statements = "allow"
similar_names = "allow"
too_many_lines = "allow"
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
cast_precision_loss = "allow"
cast_lossless = "allow"
unnecessary_debug_formatting = "allow"
uninlined_format_args = "allow"
format_push_string = "allow"
unnecessary_wraps = "allow"
must_use_candidate = "allow"
trivially_copy_pass_by_ref = "allow"
match_same_arms = "allow"
unused_self = "allow"
match_wildcard_for_single_variants = "allow"
needless_pass_by_value = "allow"
assigning_clones = "allow"
option_if_let_else = "allow"
implicit_hasher = "allow"
case_sensitive_file_extension_comparisons = "allow"
unused_async = "allow"
redundant_else = "allow"
struct_excessive_bools = "allow"
return_self_not_must_use = "allow"
map_unwrap_or = "allow"
bool_to_int_with_if = "allow"
comparison_chain = "allow"
default_trait_access = "allow"
manual_let_else = "allow"