catbox/Cargo.toml

33 lines
739 B
TOML
Raw Permalink Normal View History

2022-03-06 10:25:42 -06:00
[package]
2022-03-13 13:21:13 -05:00
name = "cat-box"
version = "22.6.21"
2022-03-13 13:42:58 -05:00
edition = "2018"
license = "MIT"
description = "Work in progress game engine, inspired by arcade"
repository = "https://git.karx.xyz/karx/catbox"
readme = "README.md"
exclude = ["src/main.rs"]
2022-03-06 10:25:42 -06:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-03-07 10:19:09 -06:00
[dependencies.sdl2]
version = "0.35.2"
2022-03-16 11:26:25 -05:00
features = ["image", "ttf"]
2022-04-30 17:43:32 -05:00
2022-10-01 14:15:43 -05:00
[dependencies]
rodio = { version = "0.15.0", optional = true}
2022-10-01 14:15:43 -05:00
[build-dependencies]
ureq = {version = "2.6.2", features = ["native-tls"]}
native-tls = "0.2.7"
zip-extract = "0.1.2"
tempfile = "3.5.0"
2022-04-30 17:43:32 -05:00
[features]
default = ["audio"]
static = ["sdl2/static-link", "sdl2/bundled"]
audio = ["dep:rodio"]
[[example]]
name = "example_1"