blob: c38f2ce2afb2f7ac0387a68d7466c11a5ecec7e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
[package]
name = "zlib-header-cli"
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.2" }
|