-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (48 loc) · 1.1 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (48 loc) · 1.1 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
[package]
name = "solidspec"
version = "0.3.0"
edition = "2024"
description = "AI-powered multi-methodology development CLI — SDD, TDD, IDSD, APEX, and more"
license = "MIT"
repository = "https://github.com/jyjeanne/solidspec"
homepage = "https://github.com/jyjeanne/solidspec"
documentation = "https://github.com/jyjeanne/solidspec#readme"
[dependencies]
# CLI
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
# Configuration
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
toml = "1"
semver = "1"
# Templates
tera = "1"
# Git integration
git2 = "0.21"
# Regex
regex = "1"
# Error handling
thiserror = "2"
anyhow = "1"
# Logging
log = "0.4"
env_logger = "0.11"
# Terminal UI
console = "0.16"
# CLI detection
which = "8"
# Time
chrono = "0.4"
[lints.rust]
future-incompatible = { level = "warn", priority = -1 }
nonstandard_style = { level = "deny", priority = -2 }
[lints.clippy]
redundant_clone = { level = "deny", priority = 9 }
needless_collect = "warn"
large_enum_variant = "warn"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3"