-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (42 loc) · 1.1 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
43
44
45
46
47
48
[package]
name = "ispc-tex"
version = "0.1.0"
authors = ["Legion Labs <[email protected]>"]
description = "Rust bindings for Intel's ISPC texture compressor."
homepage = "https://github.com/legion-labs/ispc-tex-rs"
repository = "https://github.com/legion-labs/ispc-tex-rs"
documentation = "https://docs.rs/ispc-tex-rs"
readme = "README.md"
keywords = ["texture", "image", "compress", "intel", "ispc"]
categories = ["rendering", "rendering::engine", ]
license = "MIT/Apache-2.0"
build = "build.rs"
include = [
"src/bc1.rs",
"src/bc3.rs",
"src/bc6h.rs",
"src/bc7.rs",
"src/lib.rs",
"src/ispc/kernel.rs",
"src/ispc/kernelx86_64-pc-windows-msvc.lib",
"src/ispc/libkernelx86_64-unknown-linux-gnu.a",
"build.rs",
"Cargo.toml",
]
edition = "2021"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
ispc_rt = "1.0.6"
[build-dependencies]
ispc_compile = { version = "1.0.12", optional = true }
ispc_rt = "1.0.6"
[features]
ispc = ["ispc_compile"]
[dev-dependencies]
ddsfile = "0.2.3"
image = "0.21.0"
[profile.release]
lto = true
opt-level = 3
codegen-units = 1