mirror of
https://github.com/gopher64/gopher64.git
synced 2025-04-02 10:32:01 -04:00
* on mac, run game in new process * more * more * more * remove tokio * clippy * formatting * more * more * more * more * more * more * more * more * more
43 lines
972 B
TOML
43 lines
972 B
TOML
[package]
|
|
name = "gopher64"
|
|
version = "0.1.23"
|
|
edition = "2021"
|
|
rust-version = "1.82"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dirs = "6.0"
|
|
zip = "2.1"
|
|
governor = "0.8"
|
|
sevenz-rust = "0.6"
|
|
chrono = "0.4"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
eframe = "0.30"
|
|
sha2 = "0.10"
|
|
rusttype = "0.9"
|
|
sdl3-sys = { version = "0.4", features = ["build-from-source-static"] }
|
|
rfd = "0.15"
|
|
spin_sleep = "1.3"
|
|
encoding_rs = "0.8"
|
|
mimalloc = "0.1"
|
|
regex = "1.11"
|
|
tungstenite = "0.26"
|
|
socket2 = "0.5"
|
|
postcard = { version = "1.1", features = ["use-std"] }
|
|
clap = { version = "4.4", features = ["derive"] }
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.12"
|
|
default-features = false
|
|
features = ["http2","rustls-tls","charset","json","blocking"]
|
|
|
|
[build-dependencies]
|
|
winres = "0.1"
|
|
bindgen = "0.71"
|
|
cc = { version = "1.2", features = ["parallel"] }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|