messagebox-protocol/Cargo.toml
Zachery Aaron Shores-Chmielewski cc39f8a0a8 Initital Sender state machine logic implemented
Implemented and tested the state machine model for the `Sender`. Tested against the rust bindings for libsodium using
the `crypto_box` api.
2026-01-19 11:09:17 +07:00

13 lines
367 B
TOML

[package]
name = "messagebox-protocol"
version = "0.1.0"
edition = "2021"
[dependencies]
uuid = { version = "1.19", features = ["v4", "serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
[dev-dependencies]
libsodium-rs = "0.2.2" # The library itself is agnostic to implementation, but we need something to test against