46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[package]
|
|
name = "helios-remote-client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "helios-remote-client"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-tungstenite = { version = "0.21", features = ["connect", "native-tls"] }
|
|
native-tls = { version = "0.2", features = [] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
toml = "0.8"
|
|
chrono = "0.4"
|
|
helios-common = { path = "../common" }
|
|
uuid = { version = "1", features = ["v4"] }
|
|
dirs = "5"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
base64 = "0.22"
|
|
png = "0.17"
|
|
futures-util = "0.3"
|
|
colored = "2"
|
|
scopeguard = "1"
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
terminal_size = "0.3"
|
|
unicode-width = "0.1"
|
|
|
|
[build-dependencies]
|
|
winres = "0.1"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { version = "0.54", features = [
|
|
"Win32_Foundation",
|
|
"Win32_Graphics_Gdi",
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
"Win32_System_Threading",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_UI_Shell",
|
|
"Win32_System_Console",
|
|
"Win32_System_ProcessStatus",
|
|
"Win32_Graphics_Dwm",
|
|
] }
|