forked from serkanyersen/dotstate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (50 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
64 lines (50 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "dotstate"
version = "0.2.6"
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]
# TUI
ratatui = "0.30"
crossterm = "0.29"
# Git operations
git2 = { version = "0.20", features = ["vendored-openssl"] }
# Configuration
toml = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# GitHub API
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls"] }
tokio = { version = "1", features = ["full"] }
# File operations
dirs = "6"
# Error handling
anyhow = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
# CLI
clap = { version = "4.5", features = ["derive"] }
# Syntax highlighting for previews
syntect = "5.1"
# Utilities
chrono = { version = "0.4", features = ["serde"] }
# Version checking
update-informer = { version = "1.1", default-features = false, features = ["github", "reqwest", "rustls-tls"] }
[dev-dependencies]
tempfile = "3.10"
[[bin]]
name = "dotstate"
path = "src/main.rs"