Files
playit-agent/Cargo.toml
T
Patrick LorioandGitHub 02a5f7be52 0.17.0 (#121)
* Work on 0.17.0 release, adds https support

* Use v1_rundata and support https

* Fix handling of gateway tunnels

* Fix UDP handling error

* Fix IP6 shuffle bug

* clean up warnings

* Use std::env & fix panic edge cases

* Add term UI (#124)

* Add term UI

* Integrate stats and show them in tui
2026-01-13 18:14:05 -08:00

38 lines
769 B
TOML

[workspace]
members = [
"packages/agent_cli",
"packages/agent_core",
"packages/agent_proto",
"packages/api_client",
]
resolver = "3"
[workspace.package]
version = "0.17.0"
[workspace.dependencies]
tokio = { version = "1.48", features = ["full"] }
tokio-util = "0.7"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rand = "0.9.2"
hex = "0.4.3"
toml = "0.9.8"
uuid = { version = "1.18", features = ["serde"] }
byteorder = "1.5"
chrono = { version = "0.4", features = ["serde"] }
futures-util = "0.3"
message-encoding = "0.2.2"
dirs = "6.0"
[profile.release]
strip = "debuginfo"
opt-level = "z"
lto = true
codegen-units = 1