Skip to content

Commit

Permalink
chore(deps): disable default features
Browse files Browse the repository at this point in the history
  • Loading branch information
lvillis committed Nov 27, 2024
1 parent 2af629b commit 684fd3b
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 69 deletions.
124 changes: 61 additions & 63 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "tcping"
version = "1.2.3"
version = "1.2.4"
authors = ["lvillis<[email protected]>"]
edition = "2021"
description = "🛠️ A tool for testing native-to-target port latency, using Rust."
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"
Expand All @@ -13,7 +13,7 @@ documentation = "https://github.com/lvillis/tcping-rs/blob/main/README.md"
members = [".", "bin/ref-type"]

[dependencies]
clap = { version = "4.5.21", features = ["derive"] }
ctrlc = "3.4.5"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
clap = { version = "4.5.21", default-features = false, features = ["std", "color", "usage", "help", "suggestions", "error-context", "derive"] }
ctrlc = { version = "3.4.5", default-features = false }
serde = { version = "1.0.214", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.132", default-features = false, features = ["std"] }

0 comments on commit 684fd3b

Please sign in to comment.