-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (47 loc) · 1.85 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
49
50
51
52
53
[package]
name = "openexr"
version = "3.1.5"
authors = ["Anders Langlands <[email protected]>",
"Luke Titley <[email protected]>",
"Scott Wilson <[email protected]>",
"Tiago Carvalho <[email protected]>"]
edition = "2018"
license="BSD-3-Clause"
description = "High-level bindings to OpenEXR 3.1.5"
documentation = "https://docs.rs/openexr"
repository = "https://github.com/vfx-rs/openexr-rs"
readme = "README.md"
keywords = ["graphics", "image", "vfx", "exr", "openexr"]
categories = ["api-bindings", "computer-vision", "graphics", "multimedia", "rendering"]
[package.metadata.docs.rs]
# docs.rs uses a nightly compiler, so by instructing it to use our `doc-images` feature we
# ensure that it will render any images that we may have in inner attribute documentation.
# and include the markdown docs
features = ["long-form-docs"]
# KateX for math notation
rustdoc-args = [ "--html-in-header", "katex-header.html" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
openexr-sys = {path = "../openexr-bind/build/openexr-sys", version = "3.1"}
imath-traits = {path = "../imath-traits", version = "0.7"}
cgmath = {version = "*", optional = true}
glam = {version = "*", optional = true}
nalgebra = {version = "*", optional = true}
nalgebra-glm = {version = "*", optional = true}
half = "^1.7"
thiserror = "^1.0"
paste = "^1.0"
bitflags = "^1.2"
embed-doc-image = {version = "0.1.4", optional=true}
cfg-if = "^1.0"
[dev-dependencies]
png = "^0.16"
itertools = "^0.10"
lazy_static = "^1.4"
[features]
default = []
imath_cgmath = ["imath-traits/cgmath", "cgmath"]
imath_glam = ["imath-traits/glam", "glam"]
imath_nalgebra = ["imath-traits/nalgebra", "nalgebra"]
imath_nalgebra-glm = ["imath-traits/nalgebra-glm", "nalgebra-glm"]
long-form-docs = ["embed-doc-image"]