-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 775 Bytes
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 775 Bytes
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
[package]
name = "workz"
version = "0.8.0"
edition = "2021"
description = "Zoxide for Git worktrees — zero-config sync, fuzzy switching, AI-ready"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rohansx/workz"
keywords = ["git", "worktree", "cli", "developer-tools"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
clap = { version = "4", features = ["derive"] }
anyhow = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
glob = "0.3"
skim = "0.10"
dirs = "5"
axum = "0.7"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "time"] }
ratatui = "0.28"
crossterm = { version = "0.28", features = ["event-stream"] }
[profile.release]
strip = true
lto = true
codegen-units = 1