forked from zevwings/workflow.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (38 loc) · 765 Bytes
/
Cargo.toml
File metadata and controls
45 lines (38 loc) · 765 Bytes
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
[package]
name = "workflow"
version = "1.1.0"
edition = "2021"
default-run = "workflow"
[lib]
name = "workflow"
path = "src/lib.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4.5"
anyhow = "1.0"
duct = "0.13"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
chrono = "0.4"
colored = "2.1"
dialoguer = "0.11"
reqwest = { version = "0.11", features = ["json", "blocking", "rustls-tls"], default-features = false }
regex = "1.10"
clipboard = "0.5"
open = "5.0"
zip = "0.6"
flate2 = "1.0"
walkdir = "2.4"
[[bin]]
name = "workflow"
path = "src/main.rs"
[[bin]]
name = "pr"
path = "src/bin/pr.rs"
[[bin]]
name = "qk"
path = "src/bin/qk.rs"
[[bin]]
name = "install"
path = "src/bin/install.rs"