adi 0.5.0

Aldaron's Device Interface is a library developed by Plop Grizzly for creating platform-agnostic apps and video games (similar to SDL).
Documentation
# Aldaron's Device Interface                                                   #
# Copyright (c) 2017-2018 Jeron Aldaron Lau <jeron.lau@plopgrizzly.com>        #
# Licensed under the MIT LICENSE                                               #
#                             _        _                                       #
#                            /@\——————/@\                                      #
# .———  .                   |   o    o   |     .————      .            .       #
# |   | |  .———   .———   .——.     []     .——.  |      .——    ———: ———: | .   . #
# |   | |  |   |  |   |  \   \   <##>   /   /  |      |   |    /    /  | |   | #
# |———  |  |   |  |   |   |   ¯        ¯   |   |   -- |   |   /    /   |  \ /  #
# |     |  |   |  |———    |                |   |    | |   |  /    /    |   |   #
# |     |   ———   |       |                |    ————  |   | :——— :———  |   |   #
#                 |        \              /                              __/   #
#                           ¯————————————¯                                     #
# Cargo.toml                                                                   #

################################################################################

[package]
name = "adi"
version = "0.5.0"
authors = [
	"Jeron Aldaron Lau <jeron.lau@plopgrizzly.com>"
]

################################################################################

license = "MIT"
documentation = "https://docs.rs/adi"
homepage = "http://plopgrizzly.com/adi"
repository = "https://github.com/plopgrizzly/adi"

################################################################################

readme = "README.md"
description = """
    Aldaron's Device Interface is a library developed by Plop Grizzly for
    creating platform-agnostic apps and video games (similar to SDL).
"""
keywords = ["vulkan", "graphics", "gui", "input", "hardware"]
categories = ["gui", "game-engines", "hardware-support", "multimedia",
    "rendering::graphics-api"]

################################################################################

exclude = [
	"examples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", ".gitignore",
	"_config.yml", "ISSUE_TEMPLATE.md", "icon.png", "icon.ico"
]

################################################################################

[dependencies]
adi_screen = "0.4.0"

[features]
checks = []
validation = []

################################################################################