-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 1.05 KB
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
workspace = { members = ["app"] }
[package]
name = "gainforge"
version = "0.4.0"
edition = "2021"
description = "HDR tonemapping library"
readme = "README.md"
keywords = ["hdr", "tonemap", "image"]
license = "BSD-3-Clause OR Apache-2.0"
authors = ["Radzivon Bartoshyk"]
documentation = "https://github.com/awxkee/gainforge"
categories = ["multimedia::images"]
homepage = "https://github.com/awxkee/gainforge"
repository = "https://github.com/awxkee/gainforge"
exclude = ["*.jpg", "assets/*", "*.png", "assets/bench.jpg", "assets/bench.png", "assets/hdr.avif"]
rust-version = "1.82.0"
[dependencies]
moxcms = "0.8.0"
num-traits = "0.2"
pxfm = "^0.1.1"
quick-xml = { version = "0.39.0", features = ["serde", "serde-types", "serialize"], optional = true }
serde = { version = "^1.0.219", features = ["derive"], optional = true }
[features]
default = []
uhdr = ["dep:serde", "dep:quick-xml"]
[package.metadata.docs.rs]
# To build locally:
# RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --all-features --no-deps --open
all-features = true
rustdoc-args = ["--cfg", "docsrs"]