forked from shayne-snap/waylog-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (55 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
70 lines (55 loc) · 1.45 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
65
66
67
68
69
70
[package]
name = "waylog"
version = "0.2.3"
edition = "2021"
authors = ["WayLog Contributors"]
description = "Automatically save chats from Claude, Codex, and Gemini CLI to local Markdown files."
license = "Apache-2.0"
repository = "https://github.com/shayne-snap/waylog-cli"
homepage = "https://github.com/shayne-snap/waylog-cli"
build = "build.rs"
[[bin]]
name = "waylog"
path = "src/main.rs"
[dependencies]
# CLI framework
clap = { version = "4.5", features = ["derive"] }
dialoguer = "0.11"
# Async runtime
tokio = { version = "1.35", features = ["full"] }
# Note: tokio::signal is included in tokio with "full" features
# JSON/JSONL parsing
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
exitcode = "1.1"
human-panic = "2.0.6"
# Path and file utilities
home = "0.5"
walkdir = "2.4"
# Hashing (for Gemini path encoding)
sha2 = "0.10"
# Date/time
chrono = { version = "0.4", features = ["serde"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
# Output and terminal
termcolor = "1.4"
console = "0.15"
indicatif = "0.17"
# Cross-platform process management
which = "6.0"
# Async trait support
async-trait = "0.1"
# UUID generation
uuid = { version = "1.6", features = ["v4"] }
regex = "1.10"
[dev-dependencies]
tempfile = "3.8"
[build-dependencies]
clap = { version = "4.5", features = ["derive"] }
clap_mangen = "0.2"