aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrfrugal <drfrugal@karazhan>2025-03-09 11:35:10 +0100
committerdrfrugal <drfrugal@karazhan>2025-03-09 11:35:10 +0100
commit3645805c5257019f584abb624e8a7e8d8e269036 (patch)
tree569b32345c09cebae6305e5714b376e1e91fb273
parent42454380f6aa98a712265e49333dd66bf66c1c14 (diff)
added repository link to Cargo.toml
-rw-r--r--Cargo.lock4
-rw-r--r--cli/Cargo.toml5
-rw-r--r--lib/Cargo.toml3
3 files changed, 7 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 3562bd5..9e32cba 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -244,14 +244,14 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
[[package]]
name = "zlib-header"
-version = "0.1.1"
+version = "0.1.2"
dependencies = [
"hex",
]
[[package]]
name = "zlib-header-cli"
-version = "0.1.1"
+version = "0.1.2"
dependencies = [
"clap",
"zlib-header",
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index d83f829..c38f2ce 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -1,11 +1,12 @@
[package]
name = "zlib-header-cli"
-version = "0.1.1"
+version = "0.1.2"
edition = "2024"
description = "CLI to print details of the 2 Byte zlib header, as defined in RFC 1950."
license = "MIT"
authors = ["DrFrugal"]
+repository = "https://git.drfrugal.xyz/lib/zlib-header/"
[dependencies]
clap = { version = "4.5.30", features = ["derive"] }
-zlib-header = { path = "../lib", version = "0.1.1" }
+zlib-header = { path = "../lib", version = "0.1.2" }
diff --git a/lib/Cargo.toml b/lib/Cargo.toml
index e364f9b..357f07e 100644
--- a/lib/Cargo.toml
+++ b/lib/Cargo.toml
@@ -1,10 +1,11 @@
[package]
name = "zlib-header"
-version = "0.1.1"
+version = "0.1.2"
edition = "2024"
description = "Library to work with the 2 Byte zlib header, as defined in RFC 1950."
license = "MIT"
authors = ["DrFrugal"]
+repository = "https://git.drfrugal.xyz/lib/zlib-header/"
[dependencies]
hex = "0.4.3"