-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (48 loc) · 1.7 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
[package]
name = "github-workflows-update"
description = "Check github workflows for actions that can be updated"
version = "0.3.19"
authors = ["Leandro Lisboa Penz <[email protected]>"]
edition = "2021"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/lpenz/github-workflows-update"
repository = "https://github.com/lpenz/github-workflows-update"
build = "build.rs"
categories = ["command-line-utilities"]
keywords = ["github-action", "version-update"]
[dependencies]
anyhow = "1.0.93"
async-trait = "0.1.83"
clap = { version = "4.5.20", features = ["derive"] }
env_logger = "0.11.5"
futures = "0.3.31"
lenient_semver = "0.4.2"
once_cell = "1.20.2"
regex = "1.11.1"
reqwest = { version = "0.12.9", features = ["json"] }
semver = "1.0.23"
serde_json = "1.0.132"
serde_yaml = "0.9.34"
thiserror = "2.0.1"
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread", "fs", "io-util"] }
tokio-stream = { version = "0.1.16", features = ["fs"] }
tracing = { version = "0.1.40", features = ["log"] }
url = "2.5.3"
[build-dependencies]
anyhow = "1.0.93"
man = "0.3.0"
[package.metadata.deb]
section = "utils"
extended-description = """\
github-workflows-update reads all github workflow and checks the latest
available versions of all github actions and workflow dispatches used, showing
which ones can be updated and optionally updating them automatically.
"""
assets = [
["target/release/github-workflows-update.1", "usr/share/man/man1/", "644"],
["target/release/github-workflows-update", "usr/bin/", "755"],
["LICENSE", "usr/share/doc/github-workflows-update/", "644"],
["AUTHORS", "usr/share/doc/github-workflows-update/", "644"],
["README.md", "usr/share/doc/github-workflows-update/", "644"],
]