[package]
edition = "2024"
rust-version = "1.87"
name = "ja4"
version = "0.1.0"
authors = ["Hacer"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, pure-rust, no_std implementation of the JA4 TLS client fingerprinting algorithm."
homepage = "https://codeberg.org/hacer-bark/ja4"
documentation = "https://docs.rs/ja4"
readme = "README.md"
keywords = [
"ja4",
"tls",
"fingerprint",
"security",
"no-std",
]
categories = [
"cryptography",
"network-programming",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/hacer-bark/ja4"
[lib]
name = "ja4"
path = "src/lib.rs"
[[bench]]
name = "parser_bench"
path = "benches/parser_bench.rs"
harness = false
[dependencies.sha2]
version = "0.11"
default-features = false
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
default-features = false
[dev-dependencies.rand]
version = "0.10"