-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
32 lines (30 loc) · 1.19 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
[package]
name = "tcping"
version = "1.2.5"
authors = ["lvillis<lvillis@outlook.com>"]
edition = "2021"
description = "🛠️ tcping-rs: Rust (rs) TCP Ping (tcping) Utility for Port Reachability."
license = "MIT"
repository = "https://github.com/lvillis/tcping-rs"
homepage = "https://github.com/lvillis/tcping-rs"
documentation = "https://github.com/lvillis/tcping-rs/blob/main/README.md"
exclude = [
"/docs/",
"/tests/",
"/.config/",
"/.github/",
"/.justfile",
"/rust-toolchain.toml",
"/.gitignore",
]
[dependencies]
clap = { version = "4.5.27", default-features = false, features = ["std", "color", "usage", "help", "suggestions", "error-context", "derive"] }
ctrlc = { version = "3.4.5", default-features = false }
serde = { version = "1.0.217", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.137", default-features = false, features = ["std"] }
[package.metadata.release]
tag-prefix = ""
tag-name = "{{prefix}}{{version}}"
pre-release-commit-message = "chore: release {{crate_name}} version {{version}}"
tag-message = "chore: release {{crate_name}} version {{version}}"
pre-release-hook = ["git", "cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}" ]