[package]
edition = "2024"
name = "rust_jarm"
version = "0.3.9"
authors = ["Hugo-C"]
build = false
exclude = [".github/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JARM fingerprinting in native Rust"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Hugo-C/rustJarm"
[lib]
name = "rust_jarm"
path = "src/lib.rs"
[[example]]
name = "jarm"
path = "examples/jarm.rs"
[[test]]
name = "test_errors"
path = "tests/test_errors.rs"
[[test]]
name = "test_jarm"
path = "tests/test_jarm.rs"
[dependencies.hex]
version = "^0.4"
[dependencies.rand]
version = "^0.10"
[dependencies.sha2]
version = "^0.10"
[dev-dependencies.rstest]
version = "~0.26"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin_include)"]