third_party_rust_link-cplus.../Cargo.toml
2021-11-12 19:01:33 -08:00

29 lines
706 B
TOML

[package]
name = "link-cplusplus"
version = "1.0.6"
authors = ["David Tolnay <dtolnay@gmail.com>"]
links = "cplusplus"
edition = "2018"
rust-version = "1.34"
license = "MIT OR Apache-2.0"
description = "Link libstdc++ or libc++ automatically or manually"
repository = "https://github.com/dtolnay/link-cplusplus"
documentation = "https://docs.rs/link-cplusplus"
readme = "README.md"
[build-dependencies]
cc = "1.0"
[features]
default = [] # automatic
"libstdc++" = [] # force libstdc++
"libc++" = [] # force libc++
nothing = [] # link nothing, determined somewhere else
# deprecated aliases
libstdcxx = ["libstdc++"]
libcxx = ["libc++"]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]