-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
85 lines (77 loc) · 2.04 KB
/
Cargo.toml
File metadata and controls
85 lines (77 loc) · 2.04 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[workspace]
members = [
".",
"plugins/provider-github",
"plugins/provider-circleci",
"plugins/provider-woodpecker",
]
resolver = "2"
[workspace.dependencies]
# Shared dependencies for workspace members
tonic = "0.14.2"
prost = "0.14.1"
tonic-prost = "0.14.2"
tokio = { version = "1.46.1", features = ["full"] }
anyhow = "1.0.98"
tracing = "0.1.41"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
[package]
name = "cigen"
version = "0.1.0"
edition = "2024"
authors = ["Nathan Broadbent / DocSpring Inc"]
description = "A CLI tool that generates CI pipeline configurations from templates"
license = "MIT"
repository = "https://github.com/DocSpring/cigen"
readme = "README.md"
keywords = ["cli", "ci", "github-actions", "circleci", "devops"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
anyhow = { workspace = true }
base64 = "0.22.1"
clap = { version = "4.5.41", features = ["derive", "cargo", "env"] }
colored = "3.0.0"
jsonschema = { version = "0.30.0", default-features = false, features = ["resolve-file"] }
miette = { version = "7.6.0", features = ["fancy"] }
minijinja = { version = "2.11.0", features = ["debug"] }
once_cell = "1.21.3"
petgraph = "0.8.2"
regex = "1.11.1"
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = "0.9.34"
sha2 = "0.10.9"
thiserror = "2.0.12"
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
which = "8.0.0"
yaml-spanned = "0.0.3"
globwalk = "0.9.1"
walkdir = "2.5.0"
tonic = { workspace = true }
prost = { workspace = true }
tonic-prost = { workspace = true }
hex = "0.4.3"
libyaml-safer = "0.3.0"
[dev-dependencies]
assert_cmd = "2.0.17"
assert_fs = "1.1.3"
insta = "1.43.1"
predicates = "3.1.3"
snapbox = "0.6.21"
tempfile = "3.20.0"
trycmd = "0.15.10"
[profile.release]
lto = true
codegen-units = 1
strip = true
opt-level = "z"
[profile.dev]
opt-level = 0
[profile.test]
opt-level = 0
[build-dependencies]
tonic-build = "0.14.2"
tonic-prost-build = "0.14.2"