[package]
edition = "2021"
rust-version = "1.85"
name = "algochat"
version = "0.2.1"
authors = ["CorvidLabs <hello@corvidlabs.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the AlgoChat protocol for encrypted messaging on Algorand"
readme = "README.md"
keywords = [
"algorand",
"encryption",
"messaging",
"blockchain",
"chacha20",
]
categories = [
"cryptography",
"encoding",
]
license = "MIT"
repository = "https://github.com/CorvidLabs/rs-algochat"
[lib]
name = "algochat"
path = "src/lib.rs"
[[example]]
name = "export_envelopes"
path = "examples/export_envelopes.rs"
[[test]]
name = "cross_impl"
path = "tests/cross_impl.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.chacha20poly1305]
version = "0.10"
[dependencies.data-encoding]
version = "2.6"
[dependencies.dirs]
version = "6.0"
[dependencies.ed25519-dalek]
version = "2.1"
features = ["rand_core"]
[dependencies.hex]
version = "0.4"
[dependencies.hkdf]
version = "0.12"
[dependencies.pbkdf2]
version = "0.12"
[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 = "2.0"
[dependencies.tokio]
version = "1.0"
features = [
"sync",
"time",
"rt",
]
[dependencies.x25519-dalek]
version = "2.0"
features = ["static_secrets"]
[dependencies.zeroize]
version = "1.8"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.0"
features = [
"sync",
"time",
"rt",
"macros",
]