1
0
mirror of https://github.com/playit-cloud/playit-agent.git synced 2024-11-13 14:09:32 +00:00
playit-agent/packages/agent_cli/Cargo.toml
Patrick Lorio 3c3fcd6caf
Break out playit-api-client to own package and add ping-monitor (#92)
* Work on ping monitor package

* Integrate ping-monitor into playit-cli
2024-08-24 18:42:26 -07:00

38 lines
1.1 KiB
TOML

[package]
name = "playit-cli"
version.workspace = true
edition = "2021"
authors = ["Patrick Lorio <patrick@playit.gg>"]
description = "Making it easy to play games with friends. Makes your server public"
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]
tokio = { workspace = true }
rand = { workspace = true }
hex = { workspace = true }
toml = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
tracing-appender = { workspace = true }
uuid = { workspace = true }
dirs = { workspace = true }
clap = { version = "4.5", features = ["derive"] }
urlencoding = "2.1"
serde_yaml = "0.9"
crossterm = "0.28"
lazy_static = "1.5"
playit-agent-core = { path = "../agent_core" }
playit-agent-proto = { path = "../agent_proto" }
playit-api-client = { path = "../api_client" }
playit-ping-monitor = { path = "../ping_monitor" }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"