-
Notifications
You must be signed in to change notification settings - Fork 483
/
Cargo.toml
59 lines (48 loc) · 1.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "sdl2-sys"
description = "Raw SDL2 bindings for Rust, used internally rust-sdl2"
repository = "https://github.com/rust-sdl2/rust-sdl2"
version = "0.37.0"
authors = ["Tony Aldridge <tony@angry-lawyer.com>", "Cobrand <cobrandw@gmail.com>"]
keywords = ["SDL", "windowing", "graphics", "ffi"]
categories = ["rendering","external-ffi-bindings","game-engines","multimedia"]
license = "MIT AND Zlib"
links = "SDL2"
build = "build.rs"
edition = "2018"
[lib]
name = "sdl2_sys"
path = "src/lib.rs"
[dependencies]
libc = "^0.2"
[build-dependencies.bindgen]
version = "^0.69"
optional = true
[build-dependencies.pkg-config]
version = "^0.3"
optional = true
[build-dependencies.vcpkg]
version = "^0.2.12"
optional = true
[build-dependencies.cmake]
version = "^0.1.47"
optional = true
[build-dependencies.flate2]
version = "^1"
optional = true
[build-dependencies]
version-compare = "0.1"
cfg-if = "^1.0"
[features]
default = []
use-pkgconfig = ["pkg-config"]
use-vcpkg = ["vcpkg"]
use-bindgen = ["bindgen"]
static-link = []
use_mac_framework = []
use_ios_framework = []
bundled = ["cmake"]
mixer = []
image = []
ttf = []
gfx = []