[package]
edition = "2024"
name = "kiwavi"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A secure TOTP-based key derivation system using user salts"
documentation = "https://docs.rs/kiwavi"
readme = "README.md"
keywords = [
"totp",
"crypto",
"security",
"webauthn",
]
categories = [
"cryptography",
"authentication",
]
license = "Apache-2.0"
repository = "https://github.com/aibunny/kiwavi"
[lib]
name = "kiwavi"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.base32]
version = "0.5.1"
[dependencies.data-encoding]
version = "2.9.0"
[dependencies.sha2]
version = "0.10.9"
[dependencies.totp-rs]
version = "5.7.0"
[dependencies.urlencoding]
version = "2.1.3"