Allow static linking

This commit is contained in:
Yash Karandikar 2022-04-30 17:43:32 -05:00
parent 8ecc43eafa
commit 3b007f4a4c
Signed by: karx
GPG key ID: A794DA2529474BA5

View file

@ -1,6 +1,6 @@
[package]
name = "cat-box"
version = "0.1.5"
version = "0.1.6"
edition = "2018"
license = "MIT"
description = "Work in progress game engine, inspired by arcade"
@ -13,3 +13,7 @@ exclude = ["src/main.rs"]
[dependencies.sdl2]
version = "0.35.2"
features = ["image", "ttf"]
[features]
default = []
static = ["sdl2/bundled"]