conrod 0.51.0

An easy-to-use, 100% Rust, extensible 2D GUI library.
Documentation
[package]
name = "conrod"
version = "0.51.0"
authors = [
    "Mitchell Nordine <mitchell.nordine@gmail.com>",
    "Sven Nilsen <bvssvni@gmail.com>"
]
keywords = ["ui", "widgets", "gui", "interface", "graphics"]
description = "An easy-to-use, 100% Rust, extensible 2D GUI library."
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/pistondevelopers/conrod.git"
homepage = "https://github.com/pistondevelopers/conrod"
documentation = "http://docs.piston.rs/conrod/conrod/"

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

[dependencies]
daggy = "0.4.0"
num = "0.1.30"
pistoncore-input = "0.17.0"
rusttype = "0.2.0"

# Optional dependencies and features
# ----------------------------------
#
# None of the following dependencies are necessary to use conrod, however they may greatly
# simplify the work involved when using conrod with certain window or graphics backends.
#
# `glium`
# Provides functions for rendering the `conrod::render::Primitives` yielded by `Ui::draw`.
# Enables the `conrod::backend::glium` module.
#
# `winit`
# Provides a function for converting winit `Event`s to `conrod::event::Raw`s.
# Enables the `conrod::backend::winit` module.
#
# `piston`
# Provides functions for:
# - Converting piston `GenericEvent` types to `conrod::event::Raw`s.
# - Rendering the `conrod::render::Primitives` yielded by `Ui::draw`.
# Enables the `conrod::backend::piston` module.
glium = { version = "0.16.0", optional = true }
winit = { version = "0.5.9", optional = true }
piston2d-graphics = { version = "0.20", optional = true }

[features]
piston = ["piston2d-graphics"]

[dev-dependencies]
find_folder = "0.3.0"
image = "0.12.0"
rand = "0.3.13"
# glutin_gfx.rs example dependencies
gfx = "0.14.0"
gfx_core = "0.6.0"
gfx_window_glutin = "0.14.0"
glutin = "0.7.0"
# piston_window.rs example dependencies
piston_window = "0.63.0"