mirror of
https://github.com/gopher64/gopher64.git
synced 2026-07-11 01:25:20 +02:00
62 lines
1.8 KiB
TOML
62 lines
1.8 KiB
TOML
[package]
|
|
name = "gopher64"
|
|
version = "1.1.17"
|
|
edition = "2024"
|
|
rust-version = "1.95.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dirs = "6.0"
|
|
zip = "8.0"
|
|
sevenz-rust2 = "0.20"
|
|
chrono = "0.4"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde-big-array = "0.5"
|
|
slint = { version = "1.16", default-features = false, features = ["compat-1-2", "std", "backend-winit", "renderer-skia"] }
|
|
open = "5.3"
|
|
sha2 = "0.11"
|
|
sdl3-sys = { version = "0.6", features = ["build-from-source-static"] }
|
|
sdl3-ttf-sys = { version = "0.6", features = ["build-from-source-static", "no-sdlttf-harfbuzz", "no-sdlttf-plutosvg"] }
|
|
rfd = "0.17"
|
|
tokio = {version = "1.46", features = ["rt-multi-thread", "macros", "fs"] }
|
|
spin_sleep = "1.3"
|
|
encoding_rs = "0.8"
|
|
mimalloc = "0.1"
|
|
regex = "1.11"
|
|
tokio-tungstenite = "0.29"
|
|
futures = "0.3"
|
|
socket2 = { version = "0.6", features = ["all"] }
|
|
rand = "0.10"
|
|
fatfs = "0.3"
|
|
semver = "1.0"
|
|
postcard = { version = "1.1", features = ["use-std"] }
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
reqwest = { version = "0.13", features = ["json", "query"] }
|
|
|
|
[build-dependencies]
|
|
winresource = "0.1"
|
|
bindgen = "0.72"
|
|
slint-build = "1.12"
|
|
cc = { version = "1.2", features = ["parallel"] }
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = "thin"
|
|
strip = true
|
|
|
|
[profile.release-with-debug]
|
|
inherits = "release"
|
|
debug = true
|
|
strip = false
|
|
panic = "unwind"
|
|
|
|
[package.metadata.bundle]
|
|
name = "Gopher64"
|
|
identifier = "io.github.gopher64.gopher64"
|
|
category = "public.app-category.games"
|
|
icon = ["data/icon/gopher64_128x128.png","data/icon/gopher64_256x256.png","data/icon/gopher64_512x512.png"]
|
|
osx_frameworks = ["/opt/homebrew/opt/molten-vk/lib/libMoltenVK.dylib","/opt/homebrew/opt/freetype/lib/libfreetype.6.dylib","/opt/homebrew/opt/libpng/lib/libpng16.16.dylib"]
|
|
osx_minimum_system_version = "15.0"
|