-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (61 loc) · 1.74 KB
/
Cargo.toml
File metadata and controls
67 lines (61 loc) · 1.74 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
[package]
name = "peas"
version = "0.2.0"
edition = "2024"
description = "A CLI-based, flat-file issue tracker for humans and robots"
license = "MIT OR Apache-2.0"
repository = "https://github.com/asaaki/peas"
homepage = "https://github.com/asaaki/peas"
documentation = "https://github.com/asaaki/peas#readme"
readme = "README.md"
keywords = ["cli", "issue-tracker", "ai-agents", "llm", "developer-tools"]
categories = ["command-line-utilities", "development-tools"]
exclude = [".beans/", ".peas/", ".github/", "extras/", "tests/"]
[[bin]]
name = "peas"
path = "src/main.rs"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }-v{ version }.{ archive-format }"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "tgz"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"
[profile.release]
lto = true
strip = true
[dependencies]
anyhow = "1.0.101"
async-graphql = "7.2.1"
async-graphql-axum = "7.2.1"
axum = "0.8.8"
chrono = { version = "0.4.43", features = ["serde"] }
clap = { version = "4.5.59", features = ["derive", "env"] }
cli-clipboard = "0.4"
colored = "3.1.1"
crossterm = "0.29"
notify = "8.2"
notify-debouncer-mini = "0.7"
directories = "6.0.0"
nanoid = "0.4.0"
open = "5.3"
ratatui = "0.30"
ratatui-core = "0.1"
regex = "1.12"
tachyonfx = "0.24.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde_yaml = "0.9.34"
slug = "0.1.6"
tempfile = "3.25.0"
thiserror = "2.0.18"
tokio = { version = "1.49.0", features = ["full"] }
toml = "1.0.2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-appender = "0.2"
tui-markdown = "0.3"
url = "2.5"
rat-text = "3.0.3"
[dev-dependencies]
assert_cmd = "2.1.2"
predicates = "3.1.4"