ip4sum 0.1.0

Highly optimized IPv4 checksum calculation, no-std compatible
Documentation
[package]
name = "ip4sum"
version = "0.1.0"
edition = "2024"
description = "Highly optimized IPv4 checksum calculation, no-std compatible"
license = "MIT"
authors = ["Khashayar Fereidani"]
repository = "https://github.com/fereidani/ip4sum"
documentation = "https://docs.rs/ip4sum"
keywords = ["checksum", "ipv4", "rfc1071", "internet", "no-std"]
categories = ["network-programming", "no-std", "embedded", "algorithms"]
readme = "README.md"

[features]
default = []
std = []

[dependencies]

[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
internet-checksum = "0.2"
rand = "0.9"

[[bench]]
name = "checksum_bench"
harness = false

[profile.release]
opt-level = 3
debug = 0
lto = 'fat'
panic = 'abort'
codegen-units = 1
rpath = false
strip = true