[package]
edition = "2024"
name = "libcplusplus"
version = "0.1.0"
authors = ["Joseph R. Quinn"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A no_std reimplementation of LLVM's libc++ in Rust with ABI-compatible C++ standard library types and a built-in memory sanitizer"
readme = "README.md"
keywords = [
"libc++",
"cpp",
"ffi",
"no-std",
"sanitizer",
]
categories = [
"no-std",
"external-ffi-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pegasusheavy/libcplusplus"
[features]
default = []
sanitize = []
[lib]
name = "libcplusplus"
crate-type = [
"cdylib",
"staticlib",
]
path = "src/lib.rs"
[dependencies]
[profile.dev]
panic = "abort"
[profile.release]
lto = true
panic = "abort"