35 lines
857 B
TOML
Executable File
35 lines
857 B
TOML
Executable File
[package]
|
|
name = "tetris-rust"
|
|
version = "0.1.0"
|
|
authors = ["Reimar <reimarpb@gmail.com>"]
|
|
edition = "2018"
|
|
include = ["src/res/**"]
|
|
build = "build.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ggez = "0.5.1"
|
|
lazy_static = "1.4.0"
|
|
rand = "0.7.3"
|
|
backtrace = "0.3.55"
|
|
toml = "0.5.7"
|
|
serde = { version = "1.0.117", features = ["serde_derive"] }
|
|
winit = { version = "0.19", features = ["serde"] }
|
|
serde_json = "1.0.60"
|
|
winapi = { version = "0.3.9", features = ["winuser"] }
|
|
|
|
[build-dependencies]
|
|
winres = "0.1.11"
|
|
|
|
[package.metadata.winres]
|
|
Comments = "mojn"
|
|
CompanyName = "Mojn A/S"
|
|
FileDescription = "Reimtris"
|
|
FileVersion = "1.0"
|
|
InternalName = "Reimtris"
|
|
LegalCopyright = "mojn"
|
|
LegalTrademark = "mojn"
|
|
OriginalFileName = "Reimtris.exe"
|
|
ProductName = "Reimtris"
|
|
ProductVersion = "1.0" |