-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (52 loc) · 1.51 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
[package]
name = "pcu"
version = "0.4.25"
edition = "2021"
authors = ["jerusdp <[email protected]>"]
description = "A CI tool to update change log in a PR"
rust-version = "1.74"
license = "MIT"
readme = "README.md"
repository = "https://github.com/jerus-org/pcu"
keywords = ["ci", "github", "changelog"]
include = ["**/*.rs", "Cargo.toml", "README.md", "LICENSE"]
categories = ["development-tools::build-utils", "command-line-utilities"]
[dependencies]
cargo_toml = "0.21.0"
chrono = "0.4.39"
clap = "4.5.26"
clap-verbosity-flag = "3.0.2"
color-eyre = "0.6.3"
config = "0.15.6"
env_logger = "0.11.6"
git2 = "0.19.0"
gql_client = "1.0.7"
keep-a-changelog = "0.1.4"
# keep-a-changelog = { git = "https://github.com/jerusdp/keep-a-changelog-rs.git", branch = "feat-add-link" }
log = "0.4.25"
named-colour = { version = "0.3.12", features = ["extended"] }
octocrate = { version = "2.0.1", features = [
"apps",
"pulls",
"repos",
"rustls-tls",
], default-features = false }
owo-colors = "4.1.0"
regex = "1.11.1"
serde = { version = "1.0.217", features = ["derive"] }
thiserror = "2.0.11"
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["std", "env-filter"] }
url = "2.5.3"
[dev-dependencies]
rstest = "0.24.0"
uuid = { version = "1.11.0", features = ["v4"] }
[lib]
name = "pcu_lib"
path = "src/lib/lib.rs"
[[bin]]
name = "pcu"
path = "src/cli/main.rs"
[patch.crates-io]
config = { git = 'https://github.com/mehcode/config-rs.git' }