-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (79 loc) · 2 KB
/
Cargo.toml
File metadata and controls
84 lines (79 loc) · 2 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "workmux"
version = "0.1.185"
edition = "2024"
authors = ["workmux contributors"]
description = "An opinionated workflow tool that orchestrates git worktrees and tmux"
license = "MIT"
documentation = "https://github.com/raine/workmux#readme"
homepage = "https://github.com/raine/workmux"
repository = "https://github.com/raine/workmux"
include = [
"/src/**/*",
"/skills/**/*",
"/docker/**/*",
"/.claude-plugin/**/*",
"/.codex/hooks/**/*",
"/.github/hooks/**/*",
"/resources/opencode/**/*",
"/resources/gemini/**/*",
"/.pi/extensions/**/*",
"/Cargo.toml",
"/Cargo.lock",
"/CHANGELOG.md",
"/LICENSE",
"/README.md",
]
[dependencies]
clap = { version = "4.6", features = ["derive"] }
clap_complete = "4.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
anyhow = "1.0"
thiserror = "2.0"
glob = "0.3"
pathdiff = "0.2"
percent-encoding = "2.3"
home = "0.5"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "time"] }
tracing-appender = "0.2"
edit = "0.1"
which = "8.0"
minijinja = "2.19"
tabled = { version = "0.20", features = ["ansi"] }
git-url-parse = "0.6.0"
shlex = "1.3"
slug = "0.1"
indicatif = "0.18"
console = "0.16"
regex = "1"
pulldown-cmark = { version = "0.13", default-features = false }
textwrap = "0.16"
ratatui = "0.30"
crossterm = "0.29"
ansi-to-tui = "8"
notify-rust = "4"
libc = "0.2"
ctrlc = "3.5"
base64 = "0.22"
nix = { version = "0.31.2", features = ["fs"] }
tempfile = "3.27"
getrandom = "0.4.2"
similar = "3"
terminal-light = "1.8"
unicode-width = "0.2"
signal-hook = "0.4"
notify = "9.0.0-rc.3"
ignore = "0.4"
[target.'cfg(target_os = "macos")'.dependencies]
mac-notification-sys = "0.6"
[dev-dependencies]
filetime = "0.2.27"
[patch.crates-io]
crossterm = { git = "https://github.com/raine/crossterm" }
[profile.release]
strip = true # Strip debug symbols
lto = true # Link Time Optimization for smaller binaries
codegen-units = 1 # Maximize optimization