Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-06-29 | lib: Fix msrv build. | Emilio Cobos Álvarez | |
error[E0277]: the trait bound `std::string::String: std::convert::From<&std::string::String>` is not satisfied --> src/lib.rs:460:37 | 460 | output_vector.push(line.into()); | ^^^^ the trait `std::convert::From<&std::string::String>` is not implemented for `std::string::String` | |||
2020-06-29 | Properly shell quote flags in test output | Travis Finkenauer | |
2020-06-29 | Simplify multiple headers test | Travis Finkenauer | |
Ensure that we try to generate() the test Builder. Remove unnecessary reserve() optimization. | |||
2020-06-29 | Handle multiple headers for command_line_flags() | Travis Finkenauer | |
Output from Builder::command_line_flags() would fail if more than one header were provided. This adds extra headers via the '-include' clang option. | |||
2020-06-29 | lib: Stop using count() to do for loops. | Emilio Cobos Álvarez | |
This itched me when reviewing #1816. Seems easier to switch those to loop over `get_items()`, but this patch also deduplicates the code a bit, because all that copy-pasta was also itching me. These flags don't have ordering dependencies, so the result builder should be equivalent. | |||
2020-06-29 | Update some docs that are not changelogs | Darren Kulp | |
2020-06-29 | Emit bindgen version in generated header | Darren Kulp | |
Update expectations | |||
2020-06-29 | Disable generated comment in expectations test | Darren Kulp | |
2020-06-29 | Add option to disable generated header comment | Darren Kulp | |
2020-06-29 | Run `cargo +nightly fmt` on expectations | Darren Kulp | |
Impending overwrites to expectations should be as simple and regular as possible, so get the formatting done here. | |||
2020-06-29 | Output clang args after '--' | Travis Finkenauer | |
For command_line_flags(), some arguments (like '--no-record-matches') were added after '--'. The bindgen program would interpret these as clang args. | |||
2020-06-22 | Respect changes to BINDGEN_EXTRA_CLANG_ARGS | Darren Kulp | |
2020-06-22 | build: move the rebuild dependencies to somewhere where they don't seem test ↵ | Emilio Cobos Álvarez | |
specific. | |||
2020-06-22 | Rebuild when clang_sys environment changes | Darren Kulp | |
2020-06-21 | Introduce tests for functional macros | Darren Kulp | |
2020-06-21 | Generate func_macro callbacks | Darren Kulp | |
2020-06-21 | Introduce func_macro to ParseCallbacks trait | Darren Kulp | |
2020-06-21 | Introduce is_macro_function_like | Darren Kulp | |
2020-06-21 | Introduce extent to ClangToken | Darren Kulp | |
2020-06-20 | Permit IntKind::Custom to represent Paths instead of just Idents (#1800) | Emilio Cobos Álvarez | |
2020-06-19 | Reorder jobs to reduce total runtime | Darren Kulp | |
2020-06-19 | Remove webhook that 404's | Darren Kulp | |
2020-06-19 | Remove reference to nonexistent job | Darren Kulp | |
2020-06-19 | Correct copy-paste error duplicating 5.0 config | Darren Kulp | |
libclang versions before 5.0 need our `runtime` feature enabled, so that we do not suffer a link-time failure when not finding symbols that appeared only in newer libclang versions. | |||
2020-06-15 | Refined test to verify type of resulting integer | Alan Egerton | |
2020-06-15 | Added tests | Alan Egerton | |
2020-06-15 | Permit IntKind::Custom to represent Paths instead of just Idents | Alan Egerton | |
2020-06-15 | Derive traits for newtype aliases (#1802) | eggyal | |
2020-06-15 | tests: Fix rustfmt check to allow for RUSTFMT env vars. | Emilio Cobos Álvarez | |
2020-06-15 | ci: always try to find a nightly toolchain with rustfmt. | Emilio Cobos Álvarez | |
2020-06-12 | Fix regex to be marked opaque | Yisu Rem Wang | |
While `std::*` makes informal sense, the user may be mislead into calling `opaque_type("std::*")` instead of the correct `opaque_type("std::.*")` (as I was). | |||
2020-06-08 | Remove unused Token definition. | Emilio Cobos Álvarez | |
2020-06-08 | Mangle items with the same name as Rust primitive types | kellda | |
2020-06-08 | Document environment variables in README | Travis Finkenauer | |
Mention BINDGEN_EXTRA_CLANG_ARGS and clang-sys variables. | |||
2020-06-07 | Fix warning introduced in recent objective-c work. | Emilio Cobos Álvarez | |
2020-06-05 | Document BINDGEN_EXTRA_CLANG_ARGS env variable | Travis Finkenauer | |
Feature was originally introduced in pull-request #1537 | |||
2020-05-21 | Document the 0.53.3 release. | Emilio Cobos Álvarez | |
2020-05-21 | Release 0.54.0.v0.54.0 | Emilio Cobos Álvarez | |
2020-05-18 | add command-line option for disabling untagged unions | Nathan Froyd | |
One more thing that we can configure from the command line. | |||
2020-05-14 | ir: Fall back to get the cursors from the type if we find no param decls. | Emilio Cobos Álvarez | |
It seems libclang sometimes doesn't expose the right paramdecl cursors. This should be reported upstream, but it's easy enough to workaround. It loses the parameter names which is a bit unfortunate but... Fixes #1778 | |||
2020-05-12 | Merge pull request #1750 from simlay/objc-inheritance | Emilio Cobos Álvarez | |
Objective-c inheritance support | |||
2020-05-11 | Added inheritance to objective-c support. | Sebastian Imlay | |
2020-05-05 | Merge pull request #1775 from immunant/blacklist_method_impl | Emilio Cobos Álvarez | |
Do not emit Rust method wrapper for blacklisted functions | |||
2020-05-04 | Add test | Stephen Crane | |
2020-05-04 | Do not emit Rust method wrapper for blacklisted functions | Stephen Crane | |
We should not emit Rust struct methods corresponding to a C++ method unless we are actually emitting a binding for that method. | |||
2020-05-03 | Upgrade to 2018 edition (#1769) | Emilio Cobos Álvarez | |
2020-05-03 | Update requirements.md | Mossa Merhi Reimert | |
I was having trouble figuring out how to install Clang for bindgen, and this helped right away. | |||
2020-04-27 | Run `cargo fmt` | Joshua Nelson | |
2020-04-27 | Upgrade to 2018 edition | Joshua Nelson | |
2020-04-27 | Run `cargo fix --edition` | Joshua Nelson | |