-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathCargo.toml
29 lines (26 loc) · 894 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
[package]
name = "luminance-examples"
version = "0.1.0"
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"
[features]
funtest = []
funtest-gl33-f64-uniform = []
[dependencies]
cgmath = "0.18.0"
env_logger = "0.9.0"
log = "0.4.11"
luminance = { version = "0.48.0-dev", path = "../../luminance", features = ["mint"] }
mint = "0.5.9"
[dependencies.image]
version = "0.24.1"
default-features = false
features = ["gif", "jpeg", "ico", "png", "pnm", "tga", "tiff", "webp", "bmp", "hdr", "dxt", "dds", "farbfeld"]