[package] name = "vfxpreopenexr" version = "0.0.4" authors = ["Anders Langlands "] edition = "2018" license = "Apache-2.0" description = "openexr test package" [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 = {package="vfxpreopenexr-sys", version="0.0.6"} imath-traits = "^0.4" cgmath = {version = "^0.18", optional = true} glam = {version = "^0.17", optional = true} nalgebra = {version = "^0.27", optional = true} nalgebra-glm = {version = "^0.12", optional = true} half = "^1.7" thiserror = "^1.0" paste = "^1.0" bitflags = "1.2.1" embed-doc-image = {version = "0.1.4", optional=true} cfg-if = "1.0.0" [dev-dependencies] png = "0.16.8" itertools = "0.10.0" lazy_static = "1.4.0" [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"]