clasp-crypto 4.1.0

E2E encryption add-on for CLASP protocol - AES-256-GCM, ECDH P-256, ECDSA, TOFU
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"
rust-version = "1.75"
name = "clasp-crypto"
version = "4.1.0"
authors = ["LumenCanvas"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "E2E encryption add-on for CLASP protocol - AES-256-GCM, ECDH P-256, ECDSA, TOFU"
homepage = "https://clasp.to"
readme = "README.md"
keywords = [
    "clasp",
    "encryption",
    "e2e",
    "aes-gcm",
    "ecdh",
]
categories = [
    "cryptography",
    "network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lumencanvas/clasp"

[features]
client = [
    "dep:clasp-client",
    "dep:clasp-core",
]
default = []
fs-store = ["dep:tokio"]

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

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

[dependencies.async-trait]
version = "0.1"

[dependencies.base64]
version = "0.22"

[dependencies.clasp-client]
version = "4.0"
optional = true

[dependencies.clasp-core]
version = "4.0"
optional = true

[dependencies.ecdsa]
version = "0.16"
features = [
    "signing",
    "verifying",
]

[dependencies.hkdf]
version = "0.12"

[dependencies.p256]
version = "0.13"
features = [
    "ecdh",
    "ecdsa",
]

[dependencies.rand]
version = "0.8"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1.35"
features = [
    "full",
    "fs",
]
optional = true

[dependencies.zeroize]
version = "1"
features = ["derive"]

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

[dev-dependencies.tokio]
version = "1.35"
features = [
    "full",
    "rt",
    "macros",
]