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