mesh-session 0.1.0

Session token issuance/validation for the Mesh Protocol (HMAC-SHA256 + optional X25519/AES-GCM enterprise crypto)
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 = "mesh-session"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Session token issuance/validation for the Mesh Protocol (HMAC-SHA256 + optional X25519/AES-GCM enterprise crypto)"
readme = false
keywords = [
    "mesh-protocol",
    "session",
    "hmac",
    "aes-gcm",
    "x25519",
]
categories = [
    "cryptography",
    "network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/mesh-protocol/mesh-protocol"

[features]
enterprise = [
    "x25519-dalek",
    "aes-gcm",
    "rand",
]

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

[dependencies.aes-gcm]
version = "0.10"
optional = true

[dependencies.base64]
version = "0.21"

[dependencies.hmac]
version = "0.12"

[dependencies.rand]
version = "0.8"
features = ["getrandom"]
optional = true
default-features = false

[dependencies.sha2]
version = "0.10"

[dependencies.subtle]
version = "2.4"

[dependencies.x25519-dalek]
version = "2"
features = ["static_secrets"]
optional = true