31 lines
637 B
TOML
31 lines
637 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",
|
|
"Win32_System_Pipes",
|
|
"Win32_System_IO",
|
|
"Win32_System_Threading",
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_Storage",
|
|
"Win32_Storage_FileSystem",
|
|
] }
|
|
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"
|