[package]
edition = "2021"
rust-version = "1.65.0"
name = "konst"
version = "0.3.17"
authors = ["rodrimati1992 <rodrimatt1985@gmail.com>"]
build = false
include = [
"Cargo.toml",
"src/**/*.rs",
"../README.md",
"LICENSE-ZLIB.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Const equivalents of std functions, compile-time comparison, and parsing"
documentation = "https://docs.rs/konst/"
readme = "README.md"
keywords = [
"no-std",
"const_fn",
"parsing",
]
categories = [
"no-std",
"parsing",
]
license = "Zlib"
repository = "https://github.com/rodrimati1992/konst/"
resolver = "1"
[package.metadata.docs.rs]
features = [
"docsrs",
"alloc",
"cmp",
"parsing_proc",
"rust_1_83",
"rust_latest_stable",
"nightly_mut_refs",
]
[features]
__cp_derive = [
"const_panic/derive",
"const_panic/non_basic",
]
__ui = [
"trybuild",
"rust_latest_stable",
]
alloc = ["konst_kernel/alloc"]
cmp = []
debug = ["konst_kernel/debug"]
default = [
"cmp",
"iter",
"parsing_proc",
]
docsrs = ["konst_kernel/docsrs"]
iter = ["konst_kernel/iter"]
mut_refs = [
"rust_latest_stable",
"konst_kernel/mut_refs",
]
nightly_mut_refs = [
"mut_refs",
"konst_kernel/nightly_mut_refs",
]
parsing = []
parsing_proc = [
"parsing",
"konst_proc_macros",
]
rust_1_83 = ["konst_kernel/rust_1_83"]
rust_latest_stable = ["rust_1_83"]
[lib]
name = "konst"
path = "src/lib.rs"
[dependencies.const_panic]
version = "0.2.6"
features = ["rust_1_64"]
default-features = false
[dependencies.konst_kernel]
version = "=0.3.15"
features = [
"rust_1_64",
"__for_konst",
]
[dependencies.konst_proc_macros]
version = "=0.3.10"
optional = true
[dependencies.trybuild]
version = "1.0"
optional = true
[dependencies.typewit]
version = "1.1"
features = ["rust_1_61"]
[dev-dependencies.rand]
version = "0.8.4"
features = ["small_rng"]
default-features = false