[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
features = ["full"]
version = "2.0"
[dev-dependencies.trybuild]
version = "1.0"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[lib]
name = "gamma_table_macros"
path = "src/lib.rs"
proc-macro = true
[package]
authors = ["Christopher B. Liebman <liebman@zod.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["graphics", "algorithms", "development-tools::procedural-macro-helpers"]
description = "A procedural macro for generating gamma correction lookup tables"
documentation = "https://docs.rs/gamma-table-macros"
edition = "2021"
keywords = ["gamma", "correction", "lookup-table", "proc-macro", "graphics"]
license = "MIT OR Apache-2.0"
name = "gamma-table-macros"
readme = "README.md"
repository = "https://github.com/liebman/gamma-table-macros"
version = "0.1.0"
[package.metadata.coverage.report]
exclude = ["*/target/*", "*/tests/*", "*/benches/*"]
[package.metadata.coverage.run]
include-ffi = false
skip-clean = false
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"