forked from hadronized/luminance-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (25 loc) · 819 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
[package]
name = "luminance-gl"
version = "0.19.1"
license = "BSD-3-Clause"
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
description = "OpenGL backends for luminance"
keywords = ["stateless", "type-safe", "graphics", "luminance", "opengl"]
categories = ["rendering::graphics-api"]
homepage = "https://github.com/phaazon/luminance-rs"
repository = "https://github.com/phaazon/luminance-rs"
documentation = "https://docs.rs/luminance-gl"
readme = "README.md"
edition = "2021"
rust-version = "1.65.0"
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ["gl33"]
gl33 = []
# OpenGL extensions
GL_ARB_gpu_shader_fp64 = []
[dependencies]
gl = "0.14"
luminance = { version = "0.48.0-dev", path = "../luminance" }
# luminance-std140 = { version = "0.2", path = "../luminance-std140" }