-
Notifications
You must be signed in to change notification settings - Fork 59
/
Cargo.toml
30 lines (27 loc) · 852 Bytes
/
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
[package]
name = "luminance-sdl2"
version = "0.5.1"
license = "BSD-3-Clause"
authors = [
"Dimitri Sabadie <dimitri.sabadie@gmail.com>",
"Joel Nordström <e.joel.nordstrom@gmail.com>"
]
description = "SDL2 support for luminance"
keywords = ["stateless", "type-safe", "graphics", "luminance", "sdl"]
categories = ["rendering::graphics-api"]
homepage = "https://github.com/phaazon/luminance-rs"
repository = "https://github.com/phaazon/luminance-rs"
documentation = "https://docs.rs/luminance-sdl2"
readme = "README.md"
edition = "2021"
rust-version = "1.65.0"
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ["bundled"]
bundled = ["sdl2/bundled"]
[dependencies]
gl = "0.14"
luminance = { version = ">=0.46, <0.48", path = "../luminance" }
luminance-gl = { version = "0.19", path = "../luminance-gl" }
sdl2 = "0.35.1"