shade 0.0.4

Another graphics library
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 = "shade"
version = "0.0.4"
authors = ["Casper <CasualX@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Another graphics library"
documentation = "https://docs.rs/shade"
readme = "readme.md"
keywords = [
    "gfx",
    "shader",
    "opengl",
    "2d",
]
categories = [
    "rendering",
    "graphics",
    "game-development",
    "gui",
]
license = "MIT"
repository = "https://github.com/CasualX/shade"

[features]
default = [
    "gl",
    "png",
    "gif",
    "jpeg",
    "msdfgen",
]
jpeg = ["dep:zune-jpeg"]
msdfgen = ["serde"]
serde = [
    "dep:serde",
    "cvmath/serde",
]
webgl = []

[lib]
name = "shade"
path = "src/lib.rs"

[[example]]
name = "conway"
path = "examples/conway.rs"

[[example]]
name = "dither"
path = "examples/dither.rs"

[[example]]
name = "mandelbrot"
path = "examples/mandelbrot.rs"

[[example]]
name = "polygon"
path = "examples/polygon.rs"

[[example]]
name = "renderer"
path = "examples/renderer/main.rs"

[[example]]
name = "scene"
path = "examples/scene.rs"

[[example]]
name = "screenmelt"
path = "examples/screenmelt.rs"

[[example]]
name = "shadertoy"
path = "examples/shadertoy.rs"

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

[[example]]
name = "triangle"
path = "examples/triangle.rs"

[[example]]
name = "zeldawater"
path = "examples/zeldawater.rs"

[dependencies.cvmath]
version = "0.0.6"
features = ["dataview"]

[dependencies.dataview]
version = "1.0"

[dependencies.gif]
version = "0.13"
optional = true

[dependencies.gl]
version = "0.14"
optional = true

[dependencies.png]
version = "0.17"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.zune-jpeg]
version = "0.5"
features = ["std"]
optional = true

[dev-dependencies.glutin]
version = "0.32"

[dev-dependencies.glutin-winit]
version = "0.5"

[dev-dependencies.raw-window-handle]
version = "0.6"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.stl]
version = "0.2"

[dev-dependencies.urandom]
version = "0.2"

[dev-dependencies.winit]
version = "0.30"