catbox3d/Cargo.toml

39 lines
915 B
TOML
Raw Normal View History

2022-03-06 10:25:42 -06:00
[package]
2022-03-13 13:21:13 -05:00
name = "cat-box"
version = "0.1.9"
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"
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"
2023-03-28 11:25:59 -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.17.1", optional = true}
vulkano = { version = "0.32.3", optional = true }
gl = { version = "0.14.0", optional = true }
2023-08-06 08:19:37 -05:00
x11 = { version = "2.21.0", features = ["xlib"] }
[build-dependencies]
2023-03-31 11:46:12 -05:00
ureq = {version = "2.6.2", features = ["native-tls"]}
native-tls = "0.2.7"
zip-extract = "0.1.2"
tempfile = "3.4.0"
2022-04-30 17:43:32 -05:00
[features]
default = ["audio", "sdl2/gfx"]
static = ["sdl2/static-link", "sdl2/bundled"]
audio = ["dep:rodio"]
vulkan = ["dep:vulkano"]
opengl = ["dep:gl"]
2023-04-09 21:51:20 -05:00
[[example]]
name = "example_1"