-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (54 loc) · 1.37 KB
/
Cargo.toml
File metadata and controls
71 lines (54 loc) · 1.37 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
68
69
70
71
[package]
name = "devflow"
version = "0.1.0"
edition = "2021"
authors = ["Your Name <your.email@example.com>"]
description = "AI-powered development workflow automation tool"
license = "MIT"
repository = "https://github.com/yourusername/devflow"
keywords = ["cli", "development", "automation", "ai", "rust"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "devflow"
path = "src/main.rs"
[dependencies]
# CLI framework
clap = { version = "4.0", features = ["derive", "env"] }
# Async runtime
tokio = { version = "1.0", features = ["full"] }
# HTTP client for AI APIs
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Template engine
tera = "1.19"
# File system operations
walkdir = "2.3"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Async traits
async-trait = "0.1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Configuration
config = "0.13"
# UUID generation
uuid = { version = "1.0", features = ["v4"] }
# Git operations
git2 = "0.18"
# Terminal UI
console = "0.15"
indicatif = "0.17"
dialoguer = "0.11"
# Directory utilities
dirs = "5.0"
# Date and time
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
tempfile = "3.8"
assert_cmd = "2.0"
predicates = "3.0"