forked from gwihlidal/intel-tex-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (36 loc) · 1.01 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
[package]
name = "intel_tex_2"
version = "0.4.0"
authors = ["Traverse Research <[email protected]>", "Graham Wihlidal <[email protected]>"]
description = "Rust bindings for Intel's ISPC texture compressor."
homepage = "https://github.com/Traverse-Research/intel-tex-rs-2"
repository = "https://github.com/Traverse-Research/intel-tex-rs-2"
documentation = "https://docs.rs/intel_tex_2"
readme = "README.md"
keywords = ["texture", "image", "compress", "intel", "ispc"]
categories = ["rendering", "rendering::engine", ]
license = "MIT/Apache-2.0"
build = "build.rs"
include = [
"/src/",
"/LICENSE-*",
"/build.rs",
]
edition = "2021"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
ispc_rt = "2"
[build-dependencies]
ispc_compile = { version = "2.0.1", optional = true }
cc = { version = "1", optional = true }
ispc_rt = "2"
[features]
ispc = ["ispc_compile", "cc"]
[dev-dependencies]
ddsfile = "0.5.0"
image = "0.25.1"
[profile.release]
lto = true
opt-level = 3
codegen-units = 1