mirror of
https://github.com/playit-cloud/playit-agent.git
synced 2025-10-18 20:55:38 +00:00
Trying to debug why some users are having reconnect issues. This change makes it easier for me to integrate the agent code into the backend for integration testing.
22 lines
547 B
TOML
22 lines
547 B
TOML
[package]
|
|
name = "playit-agent-proto"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
description = "Contains the protocol messages for a playit.gg agent"
|
|
license = "BSD-2-Clause"
|
|
repository = "https://github.com/playit-cloud/playit-agent"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
hex = { workspace = true }
|
|
byteorder = { workspace = true }
|
|
message-encoding = { workspace = true }
|
|
|
|
sha2 = "0.10"
|
|
hmac = "0.12"
|
|
|
|
[dev-dependencies]
|
|
rand = { workspace = true }
|