Path to this page:
./
devel/cbindgen,
Generating C bindings from Rust code
Branch: CURRENT,
Version: 0.16.0,
Package name: cbindgen-0.16.0,
Maintainer: ryoonThis project can be used to generate C bindings for Rust code. It
is currently being developed to support creating bindings for
WebRender, but has been designed to support any project.
Required to build:[
pkgtools/cwrappers] [
lang/rust-bin]
Master sites:
SHA1: 09013fa96ffde83f718af8249464ec74895109d2
RMD160: 97dfa419e59d54d74f9e69865ad40066139e3867
Filesize: 173.984 KB
Version history: (Expand)
- (2021-01-01) Updated to version: cbindgen-0.16.0
- (2020-10-11) Updated to version: cbindgen-0.15.0
- (2020-09-28) Updated to version: cbindgen-0.14.6
- (2020-09-27) Updated to version: cbindgen-0.14.5
- (2020-08-28) Updated to version: cbindgen-0.14.4
- (2020-07-31) Updated to version: cbindgen-0.14.3
CVS history: (Expand)
2021-01-01 13:47:48 by Ryo ONODERA | Files touched by this commit (2) |  |
Log message:
cbindgen: Update to 0.16.0
* Fix HOMEPAGE.
Changelog:
* Remove artificial restriction on lifetime parameters on enums (#604)
* Add an option for converting usize/isize into size_t/ptrdiff_t. (#606)
* Allow controlling the cargo profile used for expansion. (#607)
* Support wider range of expressions in enum discriminants (#614)
* Support generation of Cython bindings (#590)
* Fixed some issues with style=tag and recursive structs (#615)
* Default C style to Both (as specified in docs) (#615)
* Fix resolution of path dependencies from certain modules. (#629)
* Support inlined definitions for tuple variants with a single field in C (#631)
|
2020-10-11 15:04:35 by Ryo ONODERA | Files touched by this commit (2) |  |
Log message:
cbindgen: Update to 0.15.0
Changelog:
* Allow customizing mangling of generic parameters in C (#575)
* Box<T> simplifies to T* in C (4ce324c)
* ManuallyDrop<T> and MaubeUninit<T> simplify to T in C, and are \
opaque in C++ (0076a17)
* C++ supports a derive-ostream annotation to derive serialization of structs, \
unions and enums (#582)
* Large character constants have been fixed on Windows (#586)
* Constants are now generated for typedefs, etc (#589)
* The `sort_by` configuration option has been made to work for constants (#587)
* Default sort order is source order now (sort_by = "None"), and can \
be changed by the above option (#587)
|
2020-09-28 15:21:03 by Ryo ONODERA | Files touched by this commit (2) |  |
Log message:
cbindgen: Update to 0.14.6
Changelog:
Not available.
|
2020-09-27 17:49:42 by Ryo ONODERA | Files touched by this commit (2) |  |
Log message:
cbindgen: Update to 0.14.6
CHangelog:
Not available.
|
2020-08-25 16:30:39 by Ryo ONODERA | Files touched by this commit (2) |  |
Log message:
cbindgen: Update to 0.14.4
Changelog:
* Allow to override the mangling separator (#502)
* cbindgen now handles better having ZSTs in template parameters, and
default template parameters (#563).
* Support for annotating nonnull pointers (#558)
* Fixed bitflags that overflow a signed integer (#556)
* Support for wildcard argument names (#550)
* Support for the never return type, with configurable annotation (#549)
* Properly reject arrays as function arguments (#540)
|
2020-08-14 22:50:22 by Tobias Nygren | Files touched by this commit (7) |
Log message:
cargo users: drop do-build target where redundant
|
2020-08-14 13:05:00 by Tobias Nygren | Files touched by this commit (7) |
Log message:
rust/cargo: replace "--frozen --locked" with "--offline" in \
various places
The intent of "--frozen --locked" was to not use the network, but the new
"--offline" option is better suited for this purpose.
It for example allows us to patch Cargo.toml if necessary without having
to regen checksums.
|
2020-07-31 03:20:43 by Maya Rashish | Files touched by this commit (2) |  |
Log message:
cbindgen: update to 0.14.3
* Introduce cbindgen:ignore comment annotation, to allow ignoring items or \
modules. (#519)
* Support for casts in constant expressions. (#526)
* Make a non-fatal error a warning message. (#535)
* Add a --metadata option to the CLI, to allow passing pre-computed cargo \
metadata. (#538)
|