cpp_build 0.5.11

Cargo build script for the `cpp` crate
Documentation
[package]
name = "cpp_build"
version.workspace = true
authors = ["Nika Layzell <nika@thelayzells.com>", "Olivier Goffart <olivier.goffart@slint.dev>"]
edition.workspace = true
rust-version.workspace = true
description = "Cargo build script for the `cpp` crate"
readme = "../README.md"
license.workspace = true
keywords = ["c", "cxx", "ffi", "compiler", "build-dependencies"]
categories = ["development-tools::ffi"]
repository = "https://github.com/mystor/rust-cpp"
documentation = "https://docs.rs/cpp_build"

[features]
# Ignore compilations error of the C++ code when building the documentation, as the docs.rs server
# might not have the required libraries
docs-only = []
parallel = ["cc/parallel"]

[dependencies]
cc = "1.0.38"
cpp_common = { path = "../cpp_common", version = "=0.5.11" }
syn = { version = "2.0", features=["full", "visit"] }
proc-macro2 = "1.0"
regex = "1"
unicode-xid = "0.2"

[package.metadata.docs.rs]
features = [ "docs-only" ]