glome 0.3.0

Generic low-overhead message exchange with cryptographic integrity protection
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 = "glome"
version = "0.3.0"
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic low-overhead message exchange with cryptographic integrity protection"
readme = false
categories = [
    "authentication",
    "cryptography",
    "no-std",
]
license = "Apache-2.0"
repository = "https://github.com/google/glome"

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

[[bin]]
name = "glome"
path = "src/cli/bin.rs"
required-features = ["cli"]

[dependencies.base64]
version = "0.21"
optional = true

[dependencies.clap]
version = "4"
features = ["derive"]
optional = true

[dependencies.hmac]
version = "0.12"

[dependencies.openssl]
version = "0.10"
optional = true

[dependencies.sha2]
version = "0.10"

[dependencies.x25519-dalek]
version = "2.0"
features = [
    "getrandom",
    "static_secrets",
]
optional = true

[dev-dependencies.hex]
version = "0.4"

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

[dev-dependencies.tempfile]
version = "3.14.0"

[dev-dependencies.yaml-rust2]
version = "0.9"

[features]
cli = [
    "dep:base64",
    "dep:clap",
]
dalek = ["dep:x25519-dalek"]
default = ["dalek"]
openssl = ["dep:openssl"]