#cargo-features = ["strip"] [package] name = "rusty-bird" version = "0.2.0" authors = ["Marius Wilms "] edition = "2018" license = "GPL-3.0-only" readme = "README.md" repository = "https://github.com/mawilms/rusty-bird" description = """ Rusty bird is a simple flappy bird implementation that can be controlled by external applications via TCP. So the user is able to plug a reinforcement learning agent to it and play the game. """ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] ggez = "^0" glam = { version = "^0", features = ["mint"]} mint = "^0" rand = "^0" rust-embed = "^5" image = "^0" serde = "^1" serde_json = "^1" [profile.release] opt-level = "s" lto = true #strip = "symbols"# Currently only useable for nightly --> codegen-units = 1