1[package] 2name = "link-cplusplus" 3version = "1.0.8" 4authors = ["David Tolnay <dtolnay@gmail.com>"] 5categories = ["external-ffi-bindings", "development-tools::ffi", "compilers", "no-std"] 6description = "Link libstdc++ or libc++ automatically or manually" 7documentation = "https://docs.rs/link-cplusplus" 8edition = "2018" 9keywords = ["linkage", "c++"] 10license = "MIT OR Apache-2.0" 11links = "cplusplus" 12repository = "https://github.com/dtolnay/link-cplusplus" 13rust-version = "1.34" 14 15[build-dependencies] 16cc = "1.0" 17 18[features] 19default = [] # automatic 20"libstdc++" = [] # force libstdc++ 21"libc++" = [] # force libc++ 22nothing = [] # link nothing, determined somewhere else 23 24# deprecated aliases 25libstdcxx = ["libstdc++"] 26libcxx = ["libc++"] 27 28[package.metadata.docs.rs] 29targets = ["x86_64-unknown-linux-gnu"] 30