-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (37 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
48 lines (37 loc) · 1.04 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
[package]
name = "aclaude"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
license = "MIT"
description = "Opinionated Claude Code distribution with persona theming"
[dependencies]
# CLI
clap = { version = "4", features = ["derive", "env"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
# Config (TOML)
toml = "0.8"
# Error handling
anyhow = "1"
thiserror = "2"
# Timestamps
chrono = { version = "0.4", features = ["serde"] }
# HTTP (self-update via GitHub releases)
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
# tmux control mode client
tmux-cmc = { git = "https://github.com/ArcavenAE/tmux-cmc", branch = "main" }
[build-dependencies]
chrono = "0.4"
[dev-dependencies]
insta = { version = "1", features = ["yaml", "json"] }
tempfile = "3"
[lints.clippy]
cloned_instead_of_copied = "warn"
needless_pass_by_value = "warn"
redundant_closure_for_method_calls = "warn"
uninlined_format_args = "deny"
[lints.rust]
unsafe_code = "forbid"