mirror of
https://github.com/encounter/rust-sdl2.git
synced 2026-07-10 21:18:41 -07:00
31 lines
645 B
TOML
31 lines
645 B
TOML
[package]
|
|
|
|
name = "sdl2-sys"
|
|
description = "Raw SDL2 bindings for Rust, used internally rust-sdl2"
|
|
repository = "https://github.com/AngryLawyer/rust-sdl2"
|
|
version = "0.30.0"
|
|
authors = ["Tony Aldridge <tony@angry-lawyer.com>"]
|
|
keywords = ["SDL", "windowing", "graphics", "ffi"]
|
|
categories = ["rendering","games","external-ffi-bindings","game-engines","multimedia"]
|
|
license = "MIT"
|
|
links = "SDL2"
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "sdl2_sys"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
|
|
[build-dependencies.pkg-config]
|
|
version = "0.3"
|
|
optional = true
|
|
|
|
[features]
|
|
|
|
default = []
|
|
use-pkgconfig = ["pkg-config"]
|
|
no_std = []
|
|
use_mac_framework = []
|