mcf 0.2.0

Pure Rust implementation of the Modular Crypt Format (MCF) which is used to store password hashes in the form `${id}$...`
Documentation
[dependencies.base64ct]
optional = true
version = "1.7"

[dev-dependencies.hex-literal]
version = "1"

[features]
alloc = ["base64ct?/alloc"]
base64 = ["dep:base64ct"]
default = ["alloc", "base64"]

[lib]
name = "mcf"
path = "src/lib.rs"

[package]
authors = ["RustCrypto Developers"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["cryptography", "authentication", "encoding", "no-std", "parser-implementations"]
description = """
Pure Rust implementation of the Modular Crypt Format (MCF) which is used to store password hashes
in the form `${id}$...`
"""
edition = "2024"
keywords = ["crypt", "crypto", "password-hash", "password-hashing"]
license = "Apache-2.0 OR MIT"
name = "mcf"
readme = "README.md"
repository = "https://github.com/RustCrypto/formats"
resolver = "2"
rust-version = "1.85"
version = "0.2.0"

[[test]]
name = "mcf"
path = "tests/mcf.rs"