mirror of
https://github.com/pcvolkmer/winelounge.git
synced 2025-04-19 18:36:50 +00:00
21 lines
359 B
TOML
21 lines
359 B
TOML
[package]
|
|
name = "winelounge"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = "0.4"
|
|
rand = "0.8"
|
|
|
|
[dependencies.sdl2]
|
|
version = "0.35"
|
|
features = ["image", "ttf"]
|
|
|
|
[profile.release]
|
|
opt-level = "s"
|
|
codegen-units = 1
|
|
lto = "thin"
|
|
strip = "debuginfo"
|