qilin 0.3.2

Lightweight Game Engine for making fun 2d Games in Rust.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "qilin"
version = "0.3.2"
authors = [
    "DraftedDev",
    "Qilin Contributors",
]
exclude = ["/.github/*"]
description = """
Lightweight Game Engine for making fun 2d Games in Rust.
"""
readme = "README.md"
keywords = [
    "game-engine",
    "games",
]
categories = [
    "game-development",
    "game-engines",
    "graphics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/DraftedDev/qilin"

[[example]]
name = "shapes"
path = "examples/shapes.rs"
harness = false

[[example]]
name = "text"
path = "examples/text.rs"
harness = false

[[example]]
name = "move"
path = "examples/move.rs"
harness = false

[[example]]
name = "prefs"
path = "examples/prefs.rs"
harness = false

[[example]]
name = "ping_pong"
path = "examples/ping_pong.rs"
harness = false

[[example]]
name = "click_and_hover"
path = "examples/click_and_hover.rs"
harness = false

[dependencies.fontdue]
version = "0.7.3"
optional = true

[dependencies.hashbrown]
version = "0.14.0"
optional = true

[dependencies.image]
version = "0.24.6"
optional = true
default-features = false

[dependencies.kira]
version = "0.8.4"
optional = true

[dependencies.minifb]
version = "0.24.0"

[dependencies.mint]
version = "0.5.9"

[dependencies.serde]
version = "1.0.164"
optional = true
default-features = false

[dependencies.serde_json]
version = "1.0.85"
optional = true

[features]
audio = ["dep:kira"]
default = ["store"]
image = [
    "dep:image",
    "image/bmp",
    "image/jpeg",
    "image/png",
    "image/ico",
]
minifb = []
serde = [
    "dep:serde",
    "mint/serde",
    "serde/derive",
    "serde/std",
    "serde_json",
]
store = [
    "serde",
    "hashbrown/serde",
]
text = ["dep:fontdue"]