Commits on Source (15)
-
Dan Robertson authored
When writing out constants the cfg attribute is not written out around the defined constant.
-
Ryan Hunt authored
-
Ryan Hunt authored
-
Ryan Hunt authored
-
Dan Robertson authored
-
Jeremy Soller authored
Pull in upstream changes
-
Dan Robertson authored
If a module has a path attribute use this as the module path to parse.
-
Jeremy Soller authored
Improve module path parsing
-
Nagy Tibor authored
-
Jeremy Soller authored
Change how externs are emitted for relibc See merge request !4
-
Dan Robertson authored
-
Caleb Xu authored
-
Jeremy Soller authored
Replace trim_{left, right} with trim_{start, end} See merge request !6
-
Jeremy Soller authored
Add VaList as a primitive See merge request !5
Showing
- Cargo.lock 87 additions, 206 deletionsCargo.lock
- Cargo.toml 6 additions, 3 deletionsCargo.toml
- README.md 0 additions, 2 deletionsREADME.md
- src/bindgen/bindings.rs 15 additions, 9 deletionssrc/bindgen/bindings.rs
- src/bindgen/ir/annotation.rs 1 addition, 1 deletionsrc/bindgen/ir/annotation.rs
- src/bindgen/ir/constant.rs 3 additions, 1 deletionsrc/bindgen/ir/constant.rs
- src/bindgen/ir/documentation.rs 4 additions, 4 deletionssrc/bindgen/ir/documentation.rs
- src/bindgen/ir/ty.rs 4 additions, 0 deletionssrc/bindgen/ir/ty.rs
- src/bindgen/parser.rs 27 additions, 4 deletionssrc/bindgen/parser.rs
- tests/expectations/cfg-2.c 8 additions, 0 deletionstests/expectations/cfg-2.c
- tests/expectations/cfg-2.cpp 8 additions, 0 deletionstests/expectations/cfg-2.cpp
- tests/expectations/mod_path.c 11 additions, 0 deletionstests/expectations/mod_path.c
- tests/expectations/mod_path.cpp 14 additions, 0 deletionstests/expectations/mod_path.cpp
- tests/rust/cfg-2.rs 6 additions, 0 deletionstests/rust/cfg-2.rs
- tests/rust/mod_path/Cargo.lock 4 additions, 0 deletionstests/rust/mod_path/Cargo.lock
- tests/rust/mod_path/Cargo.toml 8 additions, 0 deletionstests/rust/mod_path/Cargo.toml
- tests/rust/mod_path/cbindgen.toml 2 additions, 0 deletionstests/rust/mod_path/cbindgen.toml
- tests/rust/mod_path/src/lib.rs 4 additions, 0 deletionstests/rust/mod_path/src/lib.rs
- tests/rust/mod_path/src/other.rs 14 additions, 0 deletionstests/rust/mod_path/src/other.rs
[package] | ||
name = "cbindgen" | ||
version = "0.5.1" | ||
version = "0.5.2" | ||
authors = ["Jeff Muizelaar <jmuizelaar@mozilla.com>", | ||
"Kartikaya Gupta <kats@mozilla.com>", | ||
"Ryan Hunt <rhunt@eqrion.net>"] | ||
... | ... | @@ -21,10 +21,13 @@ serde = {version = "1.0", features = ["derive"]} |
serde_json = "1.0" | ||
tempdir = "0.3" | ||
toml = "0.4" | ||
# Workaround for #147 | ||
serde_derive = "=1.0.21" | ||
[dependencies.standalone-syn] | ||
version = "0.12.10" | ||
features = ["extra-traits", "full"] | ||
version = "0.13.0" | ||
default-features = false | ||
features = ["clone-impls", "derive", "extra-traits", "full", "parsing", "printing"] | ||
[[bin]] | ||
name = "cbindgen" | ||
... | ... |
tests/expectations/mod_path.c
0 → 100644
tests/expectations/mod_path.cpp
0 → 100644
tests/rust/mod_path/Cargo.lock
0 → 100644
tests/rust/mod_path/Cargo.toml
0 → 100644
tests/rust/mod_path/cbindgen.toml
0 → 100644
tests/rust/mod_path/src/lib.rs
0 → 100644
tests/rust/mod_path/src/other.rs
0 → 100644