mirror of
https://github.com/topjohnwu/cxx.git
synced 2025-02-25 02:20:49 +00:00
28 lines
667 B
TOML
28 lines
667 B
TOML
[package]
|
|
name = "cxxbridge-cmd"
|
|
version = "0.2.5"
|
|
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "C++ code generator for integrating `cxx` crate into a non-Cargo build."
|
|
repository = "https://github.com/dtolnay/cxx"
|
|
|
|
[[bin]]
|
|
name = "cxxbridge"
|
|
path = "src/main.rs"
|
|
|
|
[badges]
|
|
travis-ci = { repository = "dtolnay/cxx" }
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
codespan-reporting = "0.9"
|
|
proc-macro2 = { version = "1.0", features = ["span-locations"] }
|
|
quote = "1.0"
|
|
structopt = "0.3"
|
|
syn = { version = "1.0", features = ["full"] }
|
|
thiserror = "1.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|