mdg 0.0.1

A Rust library that implements the MD5 cryptographic hash function
Documentation
[[bench]]
harness = false
name = "mdg"
path = "benches/mdg.rs"
[dependencies.cclm]
version = "0.0.1"

[dependencies.cjwt]
version = "0.0.1"
[dev-dependencies.criterion]
version = "0.4.0"

[features]
default = []

[lib]
crate-type = ["lib"]
name = "mdg"
path = "src/lib.rs"

[package]
authors = ["Sebastian Rousseau <sebastian.rousseau@gmail.com"]
categories = ["cryptography", "encoding", "algorithms"]
description = "A Rust library that implements the MD5 cryptographic hash function"
edition = "2021"
homepage = "https://minifunctions.com/"
include = ["../../LICENSE-APACHE", "../../LICENSE-MIT", "/benches/**", "/build.rs", "/Cargo.toml", "/examples/**", "/README.md", "/src/**", "/tests/**"]
keywords = ["md5", "mdg", "digest", "encryption", "hash"]
license = "MIT OR Apache-2.0"
name = "mdg"
readme = "README.md"
repository = "https://github.com/sebastienrousseau/mini-functions/tree/main/mdg/"
rust-version = "1.67"
version = "0.0.1"
[package.metadata.docs.rs]
all-features = true
[profile.dev]
codegen-units = 256
debug = true
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
panic = "unwind"
rpath = false
strip = false

[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = "s"
overflow-checks = false
panic = "abort"
rpath = false
strip = "symbols"

[profile.test]
codegen-units = 256
debug = true
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
rpath = false
strip = false