generated from jdno/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (53 loc) · 1.32 KB
/
Cargo.toml
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
[package]
name = "flowcrafter"
version = "0.3.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Create and manage workflows for GitHub Actions"
repository = "https://github.com/jdno/flowcrafter"
default-run = "flowcrafter"
# See more keys and their definitions at
# https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["cli"]
cli = [
"clap",
"serde",
"serde_yaml",
]
[[bin]]
name = "flowcrafter"
required-features = ["cli"]
[dependencies]
anyhow = "1.0.82"
async-trait = "0.1.80"
base64 = "0.22.1"
clap = { version = "4.5.4", optional = true, features = ["derive"] }
octocrab = "0.39.0"
indoc = "2.0.5"
serde = { version = "1.0.200", optional = true, features = ["derive"] }
serde_yaml = { version = "0.9.33", optional = true }
thiserror = "1.0.59"
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] }
typed-builder = "0.19.0"
url = "2.5.0"
[dev-dependencies]
mockito = "1.4.0"
serde_json = "1.0.116"
tempfile = "3.10.1"
serde_yaml = { version = "0.9.33" }
[profile.dist]
inherits = "release"
lto = "thin"
[workspace.metadata.dist]
allow-dirty = ["ci"]
cargo-dist-version = "0.6.0"
create-release = false
installers = ["shell"]
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-apple-darwin",
"x86_64-apple-darwin",
]
ci = ["github"]
pr-run-mode = "plan"