fermium 20012.0.0-alpha.1

An opinionated crate of SDL2 bindings.
Documentation
[package]
name = "fermium"
description = "An opinionated crate of SDL2 bindings."
repository = "https://github.com/Lokathor/fermium"
version = "20012.0.0-alpha.1"
authors = ["Lokathor <zefria@gmail.com>"]
edition = "2018"
license = "Zlib OR Apache-2.0 OR MIT"
keywords = ["SDL2"]
categories = ["external-ffi-bindings", "no-std"]


links = "SDL2"
build = "build.rs"


[dependencies]
chlorine = "1"


[build-dependencies]
cmake = "0.1"


[features]
# Enable this to dynamicly link to SDL2. The default is to static link because
# even with a staticly linked SDL2 the end user can override the SDL2 used at
# runtime (if absolutely necessary) via SDL2's "Dynamic API" system.
# https://sdl-mirror.readthedocs.io/en/latest/README-dynapi.html
#
# NOTE: this causes strange build errors some of the time, and I don't know why,
# but I also don't super value this as a feature, so consider it "unstable".
dynamic_link = []


# Enabling this will completely skip the build/link of SDL2 itself. This makes
# `cargo check` and similar much faster, but you'll get linking errors if you
# try to build an executable with this enabled (eg: a bin/bench/test).
cargo_check = []


[package.metadata.docs.rs]
# building the docs is a "check only" style operation.
features = ["cargo_check"]