134 lines
2.3 KiB
TOML
134 lines
2.3 KiB
TOML
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
||
|
#
|
||
|
# When uploading crates to the registry Cargo will automatically
|
||
|
# "normalize" Cargo.toml files for maximal compatibility
|
||
|
# with all versions of Cargo and also rewrite `path` dependencies
|
||
|
# to registry (e.g., crates.io) dependencies.
|
||
|
#
|
||
|
# If you are reading this file be aware that the original Cargo.toml
|
||
|
# will likely look very different (and much more reasonable).
|
||
|
# See Cargo.toml.orig for the original contents.
|
||
|
|
||
|
[package]
|
||
|
edition = "2018"
|
||
|
rust-version = "1.58.1"
|
||
|
name = "exr"
|
||
|
version = "1.5.2"
|
||
|
authors = ["johannesvollmer <johannes596@t-online.de>"]
|
||
|
exclude = [
|
||
|
"specification/*",
|
||
|
"specification/**",
|
||
|
"tests/images/*",
|
||
|
"tests/images/**",
|
||
|
]
|
||
|
description = "Read and write OpenEXR files without any unsafe code"
|
||
|
readme = "README.md"
|
||
|
keywords = [
|
||
|
"exr",
|
||
|
"openexr",
|
||
|
"file",
|
||
|
"binary",
|
||
|
"io",
|
||
|
]
|
||
|
categories = [
|
||
|
"encoding",
|
||
|
"filesystem",
|
||
|
"graphics",
|
||
|
"multimedia",
|
||
|
]
|
||
|
license = "BSD-3-Clause"
|
||
|
repository = "https://github.com/johannesvollmer/exrs"
|
||
|
|
||
|
[profile.bench]
|
||
|
opt-level = 3
|
||
|
lto = true
|
||
|
codegen-units = 1
|
||
|
debug = true
|
||
|
debug-assertions = false
|
||
|
overflow-checks = false
|
||
|
|
||
|
[profile.dev]
|
||
|
opt-level = 3
|
||
|
lto = true
|
||
|
debug = true
|
||
|
debug-assertions = true
|
||
|
overflow-checks = true
|
||
|
incremental = true
|
||
|
|
||
|
[profile.release]
|
||
|
opt-level = 3
|
||
|
lto = true
|
||
|
codegen-units = 1
|
||
|
debug = false
|
||
|
debug-assertions = false
|
||
|
|
||
|
[profile.test]
|
||
|
opt-level = 3
|
||
|
lto = true
|
||
|
debug = true
|
||
|
debug-assertions = true
|
||
|
overflow-checks = true
|
||
|
incremental = true
|
||
|
|
||
|
[lib]
|
||
|
path = "src/lib.rs"
|
||
|
test = true
|
||
|
doctest = true
|
||
|
bench = true
|
||
|
doc = true
|
||
|
plugin = false
|
||
|
proc-macro = false
|
||
|
|
||
|
[[bench]]
|
||
|
name = "read"
|
||
|
harness = false
|
||
|
|
||
|
[[bench]]
|
||
|
name = "profiling"
|
||
|
harness = false
|
||
|
|
||
|
[[bench]]
|
||
|
name = "write"
|
||
|
harness = false
|
||
|
|
||
|
[dependencies.bit_field]
|
||
|
version = "^0.10.1"
|
||
|
|
||
|
[dependencies.flume]
|
||
|
version = "^0.10.9"
|
||
|
|
||
|
[dependencies.half]
|
||
|
version = "^2.1.0"
|
||
|
|
||
|
[dependencies.lebe]
|
||
|
version = "^0.5.2"
|
||
|
|
||
|
[dependencies.miniz_oxide]
|
||
|
version = "^0.6.2"
|
||
|
|
||
|
[dependencies.smallvec]
|
||
|
version = "^1.7.0"
|
||
|
|
||
|
[dependencies.threadpool]
|
||
|
version = "^1.8.1"
|
||
|
|
||
|
[dev-dependencies.bencher]
|
||
|
version = "0.1.5"
|
||
|
|
||
|
[dev-dependencies.image]
|
||
|
version = "0.24.3"
|
||
|
features = ["png"]
|
||
|
default-features = false
|
||
|
|
||
|
[dev-dependencies.rand]
|
||
|
version = "0.8.5"
|
||
|
|
||
|
[dev-dependencies.rayon]
|
||
|
version = "1.5.3"
|
||
|
|
||
|
[dev-dependencies.walkdir]
|
||
|
version = "2.3.2"
|
||
|
|
||
|
[badges.maintenance]
|
||
|
status = "actively-developed"
|