-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
52 lines (45 loc) · 1.18 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
[package]
name = "cargo-actions"
version = "0.3.8"
edition = "2021"
license = "MIT"
keywords = ["CLI"]
description = "cargo, create a CI github action"
repository = "https://github.com/yexiyue/yexiyue/cargo-actions"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.79"
clap = { version = "4.4.18", features = ["derive"] }
console = "0.15.8"
dialoguer = "0.11.0"
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.112"
walkdir = "2.4.0"
tempfile = "3.9.0"
git2 = "0.18.1"
git2_credentials = "0.13.0"
once_cell = "1.19.0"
actions-templates = { path = "./actions-templates", version = "^0.1.0" }
reqwest = { version = "0.12.4", features = ["json"] }
tokio = "1.37.0"
axum = "0.7.5"
open = "5.1.2"
tower-http = { version = "0.5.2", features = ["cors"] }
tokio-util = "0.7.11"
cynic = { version = "3.7.1", features = [
"reqwest",
"http-reqwest",
"serde_json",
] }
cynic-codegen = "3.7.1"
dialogue-macro = "0.3.2"
[[bin]]
path = "src/main.rs"
name = "cargo-actions"
[profile.release]
lto = true
opt-level = 3
[workspace]
members = ["actions-templates"]
[build-dependencies]
cynic-codegen = "3.7.1"