39 lines
1017 B
TOML
39 lines
1017 B
TOML
[package]
|
|
name = "gta-tools"
|
|
version = "0.12.0"
|
|
edition = "2024"
|
|
license = "Apache-2.0"
|
|
authors = ["futile <git@futile.eu>"]
|
|
description = "A toolset of convenient things for GTA V Online."
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
eframe = { version = "0.35", default-features = false, features = [
|
|
"glow",
|
|
"default_fonts",
|
|
] }
|
|
egui_extras = { version = "0.35", default-features = false, features = [
|
|
"image",
|
|
"svg",
|
|
] }
|
|
humantime = "2.3.0"
|
|
image = { version = "0.25", default-features = false, features = ["png"] }
|
|
log = "0.4"
|
|
open = "5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
strum = { version = "0.28", features = ["derive"] }
|
|
windows = { version = "0.62", features = [
|
|
"Win32_NetworkManagement_WindowsFirewall",
|
|
"Win32_System_Com",
|
|
"Win32_System_Diagnostics_ToolHelp",
|
|
"Win32_System_Threading",
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
] }
|
|
winreg = "0.56"
|
|
|
|
[build-dependencies]
|
|
static_vcruntime = "3.0.0"
|
|
tauri-winres = "0.3"
|