[package]
edition = "2018"
name = "const-gen"
version = "1.6.9"
authors = ["Griffin O'Neill <gsoneill1003@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A crate for generating (relatively) complex compile-time constants in rust.\r
"""
homepage = "https://github.com/Eolu/const-gen"
documentation = "https://docs.rs/const_gen"
readme = "README.md"
keywords = [
"const",
"constants",
"compile-time",
"build",
]
categories = [
"accessibility",
"config",
"development-tools::build-utils",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Eolu/const-gen"
[features]
default = [
"std",
"derive",
"phf",
]
derive = ["const-gen-derive"]
either = ["dep:either"]
phf = ["std"]
std = []
[lib]
name = "const_gen"
path = "src/lib.rs"
[dependencies.const-gen-derive]
version = "1.1.7"
optional = true
[dependencies.either]
version = "1.13.0"
optional = true