-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (46 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
58 lines (46 loc) · 1.13 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
[package]
name = "braid"
version = "0.9.0"
edition = "2024"
license = "MIT"
description = "a lightweight, repo-local, multi-agent capable issue tracker"
repository = "https://github.com/alextes/braid"
readme = "README.md"
keywords = ["cli", "issue-tracker", "git", "productivity"]
categories = ["command-line-utilities", "development-tools"]
default-run = "brd"
[[bin]]
name = "brd"
path = "src/main.rs"
[dependencies]
# CLI
clap = { version = "4", features = ["derive", "env"] }
clap_complete = "4"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1"
toml = "0.9"
# File locking
fs2 = "0.4"
# Random ID generation
rand = "0.9"
# Time
time = { version = "0.3", features = ["serde", "formatting", "parsing"] }
# UUID generation
uuid = { version = "1", features = ["v4"] }
# Unix process management
libc = "0.2"
# Errors
anyhow = "1"
thiserror = "2"
# TUI
ratatui = { version = "0.30", features = ["unstable-rendered-line-info"] }
crossterm = "0.29"
ansi-to-tui = "8"
[dev-dependencies]
tempfile = "3"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"