mini-mail-auth 0.1.0

A minimal DKIM signing library for Rust, for those who just need to sign an email.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "mini-mail-auth"
version = "0.1.0"
authors = ["Stalwart Labs LLC <hello@stalw.art>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal DKIM signing library for Rust, for those who just need to sign an email."
homepage = "https://github.com/stalwartlabs/mail-auth"
readme = "README.md"
keywords = [
    "dkim",
    "mail",
    "email",
    "sign",
]
categories = [
    "email",
    "authentication",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/stalwartlabs/mail-auth"

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

[[example]]
name = "comparison"
path = "examples/comparison.rs"

[dependencies.base64]
version = "0.22.1"

[dependencies.rsa]
version = "0.9.6"
features = [
    "pem",
    "sha2",
]
default-features = false

[dependencies.sha2]
version = "0.10.9"
default-features = false

[dev-dependencies.regex]
version = "1.10.4"