22 lines
452 B
TOML
22 lines
452 B
TOML
[package]
|
|
name = "Updater"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
dirs = "5.0"
|
|
tokio = { version = "1.37", features = ["full"] }
|
|
windows = { version = "0.56", features = ["Win32_System_Console"] }
|
|
chrono = "0.4"
|
|
base64 = "0.22"
|
|
md5 = "0.7"
|
|
rand = "0.8"
|
|
|
|
# Local CubeLib for WebSocket
|
|
cube_lib = { path = "../../../Rust/CubeLib" }
|
|
|
|
[build-dependencies]
|
|
winres = "0.1.12"
|