-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathCargo.toml
28 lines (24 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"
version = "0.48.0-dev"
license = "BSD-3-Clause"
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
description = "Stateless and type-safe graphics framework"
keywords = ["stateless", "type-safe", "graphics", "luminance"]
categories = ["rendering::graphics-api"]
homepage = "https://github.com/phaazon/luminance-rs"
repository = "https://github.com/phaazon/luminance-rs"
documentation = "https://docs.rs/luminance"
readme = "README.md"
edition = "2021"
rust-version = "1.65.0"
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ["luminance-derive"]
shader-f64 = []
[dependencies]
luminance-derive = { version = "0.11.0-dev", path = "../luminance-derive", optional = true }
mint = { version = "0.5.9", optional = true }
[dev-dependencies]
mint = "0.5.9"