1
0
mirror of https://github.com/playit-cloud/playit-agent.git synced 2025-02-23 19:25:17 +00:00
playit-agent/Cargo.toml
2024-02-29 13:02:22 -08:00

31 lines
622 B
TOML

[workspace]
members = [
"packages/agent_cli",
"packages/agent_core",
"packages/agent_proto",
]
[workspace.package]
version = "0.15.13"
[workspace.dependencies]
tokio = { version = "1.36", 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.2"
uuid = { version = "1.4", features = ["serde"] }
byteorder = "1.4.3"
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
futures-util = "0.3"
[profile.release]
strip = "debuginfo"
opt-level = "z"
lto = true
codegen-units = 1