-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (46 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
52 lines (46 loc) · 1.27 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
[package]
name = "coven"
version = "0.1.14"
edition = "2024"
authors = ["Yoav Tzfati <yoav.tzfati@gmail.com>"]
license = "MIT"
default-run = "coven"
description = "A minimal streaming display and workflow runner for Claude Code's -p mode"
readme = "README.md"
repository = "https://github.com/Crazytieguy/coven"
homepage = "https://github.com/Crazytieguy/coven"
keywords = ["claude", "cli", "tui", "streaming", "workflow"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "record-vcr"
path = "src/bin/record_vcr.rs"
[dependencies]
anyhow = "1.0.101"
clap = { version = "4.5.57", features = ["derive"] }
crossterm = { version = "0.29.0", features = ["event-stream", "serde"] }
fs2 = "0.4.3"
futures = "0.3.31"
handlebars = "6.4.0"
libc = "0.2.181"
notify = "8.2.0"
rand = "0.10.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde_yaml = "0.9.34"
thiserror = "2.0.18"
tokio = { version = "1.49.0", features = ["full"] }
toml = "0.9.11"
unicode-width = "0.2"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
must_use_candidate = "allow"
missing_errors_doc = "allow"
unwrap_used = "warn"
expect_used = "warn"
panic = "warn"
[profile.dist]
inherits = "release"
lto = "thin"
[dev-dependencies]
insta = "1.46.3"
tempfile = "3"