[package]
edition = "2024"
name = "ancpp"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A C preprocessor compliant with C23 standard implemented in Rust."
homepage = "https://github.com/hemashushu/xiaoxuan-c-preprocessor"
readme = "README.md"
keywords = [
"c",
"preprocessor",
"cpp",
"c23",
]
categories = [
"development-tools",
"parser-implementations",
]
license = "MPL-2.0"
repository = "https://github.com/hemashushu/xiaoxuan-c-preprocessor"
[lib]
name = "ancpp"
path = "src/lib.rs"
[[test]]
name = "processor_test"
path = "tests/processor_test.rs"
[dependencies.chrono]
version = "0.4.44"
[dependencies.hexfloat2]
version = "0.2.0"
[dependencies.pretty_assertions]
version = "1.4.1"
[dependencies.unicode-normalization]
version = "0.1.25"