[package]
edition = "2021"
rust-version = "1.63"
name = "webrisk_hash"
version = "0.1.0"
build = false
exclude = ["docs/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "URL canonicalization and hashing for Google Web Risk API"
readme = "README.md"
keywords = [
"webrisk",
"google",
"sha256",
"url",
"canonicalization",
]
categories = [
"web-programming",
"cryptography",
]
license = "MIT"
repository = "https://github.com/ydakuka/webrisk_hash-rs"
[lib]
name = "webrisk_hash"
path = "src/lib.rs"
[[test]]
name = "canonicalize_tests"
path = "tests/canonicalize_tests.rs"
[[test]]
name = "hash_tests"
path = "tests/hash_tests.rs"
[[test]]
name = "prefixes_tests"
path = "tests/prefixes_tests.rs"
[[test]]
name = "suffixes_tests"
path = "tests/suffixes_tests.rs"
[dependencies.idna]
version = "0.5"
[dependencies.sha2]
version = "0.10"