agent-rooms 0.1.0

Rust port of the parley protocol core (@p-vbordei/agent-rooms): canonical encoding, Ed25519 signing, message validation
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 = "agent-rooms"
version = "0.1.0"
authors = ["Vlad Bordei <bordeivlad@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust port of the parley protocol core (@p-vbordei/agent-rooms): canonical encoding, Ed25519 signing, message validation"
homepage = "https://github.com/p-vbordei/agent-rooms-rs"
documentation = "https://docs.rs/agent-rooms"
readme = "README.md"
keywords = [
    "parley",
    "ed25519",
    "agent",
    "protocol",
    "signed-messages",
]
categories = [
    "cryptography",
    "authentication",
]
license = "AGPL-3.0-or-later"
repository = "https://github.com/p-vbordei/agent-rooms-rs"

[features]
cli = ["clap"]
default = []

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

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

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

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

[dependencies.chrono]
version = "0.4"
features = [
    "std",
    "serde",
    "clock",
]
default-features = false

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

[dependencies.ed25519-dalek]
version = "2.1"
features = ["rand_core"]

[dependencies.hex]
version = "0.4"

[dependencies.once_cell]
version = "1.19"

[dependencies.rand]
version = "0.8"

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

[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.base64]
version = "0.22"