mirror of
https://github.com/playit-cloud/playit-agent.git
synced 2025-02-23 17:06:24 +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.
31 lines
629 B
TOML
31 lines
629 B
TOML
[workspace]
|
|
members = [
|
|
"packages/agent_cli",
|
|
"packages/agent_core",
|
|
"packages/agent_proto",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.15.15"
|
|
|
|
[workspace.dependencies]
|
|
tokio = { version = "1.39", features = ["full"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
rand = "0.8.5"
|
|
hex = "0.4.3"
|
|
toml = "0.8.19"
|
|
uuid = { version = "1.10", features = ["serde"] }
|
|
byteorder = "1.5"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
futures-util = "0.3"
|
|
message-encoding = "0.1.0"
|
|
|
|
[profile.release]
|
|
strip = "debuginfo"
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|