radiant-rs 0.13.1

Thread-safe Rust sprite rendering engine with a friendly API and custom shader support
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 believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "radiant-rs"
version = "0.13.1"
authors = ["Dennis Möhlmann <dmo479@gmail.com>"]
description = "Thread-safe Rust sprite rendering engine with a friendly API and custom shader support"
documentation = "https://docs.rs/radiant-rs/"
readme = "README.md"
keywords = ["sprite", "sprites", "glium"]
categories = ["rendering::engine", "game-engines"]
license = "MIT"
repository = "https://github.com/sinesc/radiant-rs.git"

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

[[bin]]
name = "spritesheet"
path = "tools/spritesheet.rs"
doc = false

[[example]]
name = "01_empty"
path = "examples/01_empty.rs"

[[example]]
name = "02_sprites"
path = "examples/02_sprites.rs"

[[example]]
name = "03_text"
path = "examples/03_text.rs"

[[example]]
name = "04_matrix"
path = "examples/04_matrix.rs"

[[example]]
name = "05_tiles"
path = "examples/05_tiles.rs"

[[example]]
name = "06_program"
path = "examples/06_program.rs"

[[example]]
name = "07_to_texture"
path = "examples/07_to_texture.rs"

[[example]]
name = "08_postprocessor"
path = "examples/08_postprocessor.rs"

[[example]]
name = "09_combined"
path = "examples/09_combined.rs"

[[example]]
name = "10_glium_less"
path = "examples/10_glium_less.rs"

[[example]]
name = "11_glium_more"
path = "examples/11_glium_more.rs"

[[example]]
name = "98_threads"
path = "examples/98_threads.rs"

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

[[example]]
name = "demo_glare"
path = "examples/demo_glare.rs"
[dependencies.avec]
version = "0.1.0"

[dependencies.enum_primitive]
version = "0.1"

[dependencies.font-loader]
version = "0.6"

[dependencies.glium]
version = "0.22"
optional = true

[dependencies.image]
version = "0.19"

[dependencies.lazy_static]
version = "1.0"

[dependencies.palette]
version = "0.3"

[dependencies.regex]
version = "1.0"

[dependencies.rusttype]
version = "0.5.2"
features = ["gpu_cache"]

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

[dependencies.serde_derive]
version = "1.0"
optional = true

[dependencies.unicode-normalization]
version = "0.1.5"
[dev-dependencies.glium]
version = "0.22"

[dev-dependencies.radiant-utils]
version = "0.3"

[dev-dependencies.tiled]
version = "0.4"

[features]
backend-glium = ["glium"]
backend-null = []
default = ["backend-glium"]
serialize-serde = ["serde", "serde_derive"]