openmls_memory_storage 0.5.0

A very basic storage for OpenMLS implementing openmls_traits.
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 = "openmls_memory_storage"
version = "0.5.0"
authors = ["OpenMLS Authors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A very basic storage for OpenMLS implementing openmls_traits."
documentation = "https://docs.rs/openmls_memory_storage"
readme = "README.md"
license = "MIT"
repository = "https://github.com/openmls/openmls/tree/main/memory_storage"

[features]
extensions-draft-08 = ["openmls_traits/extensions-draft-08"]
persistence = ["base64"]
test-utils = [
    "hex",
    "openmls_traits/test-utils",
]

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

[[test]]
name = "proposals"
path = "tests/proposals.rs"

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

[dependencies.hex]
version = "0.4"
features = ["serde"]
optional = true

[dependencies.log]
version = "0.4"

[dependencies.openmls_traits]
version = "0.5.0"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dev-dependencies]