-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 1.08 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (36 loc) · 1.08 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
[package]
name = "cwt"
version = "0.2.14"
edition = "2021"
description = "Provider Worktree Manager — TUI for managing git worktrees with Claude, Codex, or Pi"
license = "MIT"
repository = "https://github.com/0dragosh/cwt"
homepage = "https://github.com/0dragosh/cwt"
keywords = ["git", "worktree", "tui", "claude", "tmux"]
categories = ["development-tools", "command-line-utilities"]
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }{ archive-suffix }"
bin-dir = "{ bin }{ binary-ext }"
[package.metadata.binstall.overrides.'cfg(unix)']
pkg-fmt = "tgz"
[dependencies]
ratatui = "0.30"
crossterm = "0.29.0"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "1.0.6"
clap = { version = "4", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v4"] }
rand = "0.10.1"
dirs = "6.0.0"
which = "8.0.2"
anyhow = "1"
thiserror = "2"
[dev-dependencies]
proptest = "1"
tempfile = "3"
[profile.release]
lto = true
strip = true