PackageTrack
Sign in Get early access

uniffi

a multi-language bindings generator for rust

0.32.0 11M downloads/mo #2942 most downloaded on crates.io mozilla/uniffi-rs

What this package is like to depend on

Last release 1 months ago

30 Jun 2026

Ships fairly regularly

a new release about every 2 months

Most releases are documented

notes for 52 of 64 stable releases

2 versions withdrawn

withdrawn after publishing

6 years old

66 releases · first in 2020

6 releases in the last 12 months

see the full history below

Release timeline

66 releases · Sep 2020 to Jun 2026
2021 2022 2023 2024 2025 2026
Release Pre-release Withdrawn

Releases

latest 60 of 66
  1. 0.32.0 30 Jun 2026
    Release notes

    chore: Release uniffi version 0.32.0

    Open source →
    Release notes

    ⚠️ Breaking Changes ⚠️

    • Kotlin and Python now fail to generate bindings when there are async primary constructors. Previously these languages skipped the constructor in this case or generated a constructor that always threw. You can get similar behavior by adding the primary constructor to the uniffi.toml excludes list in uniffi.toml (e.g. `excludes = ["MyObject.new"])
    • Ruby: Force named parameters for enum constructors (#2880)
    • The --config flag now expects a global config file rather than a flat uniffi.toml-style override. Old-style files will produce a warning and be ignored. See #2866
    • [ByRef] bytes UDL arguments now map to &[u8] on the Rust side instead of &Vec<u8>. UDL-defined functions whose Rust implementations take &Vec<u8> must change to &[u8]. Proc-macro signatures (fn foo(x: &[u8])) are unchanged. On the Kotlin side, call sites must now pass a direct java.nio.ByteBuffer rather than ByteArray; migrate with ByteBuffer.allocateDirect(arr.size).put(arr).flip(). Swift (Data) and Python (bytes) call sites are unchanged. (#2878)
    • Reworked the experimental pipeline bindgen code. Any external binding generators using this will need to be reworked as well. See #2787 for examples of how this can be done.

    ⚠️ Breaking Changes for external bindings authors ⚠️

    • The signature for CrateConfigSupplier::from_cargo_metadata_command has changed. It now inputs a MetadataCommand instance and a CargoMetadataOptions rather than just a no_deps flag.

    What's Fixed

    • Fixed bug that sometimes prevented renaming items inside a submodule #2792
    • Exempted UniFfiTag from clippy::exhaustive_structs since downstream projects may depend on it #2809
    • Fixed compile errors when exporting ambiguous method names #2937
    • Ruby: Code for all kinds of enums and custom types is now correctly generated #2880 and #2891

    ⚠️ Breaking Changes for external bindings authors ⚠️

    • There's a new GlobalConfig struct for managing config. It replaces BindgenPathsLayer::get_config() method which has been removed. See #2866.
    • [ByRef] bytes arguments now travel across the FFI as a ForeignBytes (pointer + length) value rather than a RustBuffer. External bindings need to accept the foreign-language byte buffer at the call site and lower it to ForeignBytes for the duration of the call (no copy). (#2878)

    What's New?

    • Global config file support via --config. See the docs.

    • Traits can now be exported with #[uniffi::export(foreign)] for foreign-only implementations, or #[uniffi::export(rust, foreign)] for both Rust and foreign implementations. The with_foreign flag is deprecated in favor of rust, foreign.

    • Recursive enums are now supported. UniFFI automatically detects when enum and record types participate in cycles — self-referential, mutually recursive, or cycling through a record — and generates appropriate bindings: indirect in Swift, forward references in Python (#2834).

    • Box<T> now automatically implements FFI traits when T implements them, allowing direct use in enum variants and function parameters without NewType wrappers (#2808)

    • Record fields can now be renamed with the proc-macro name = "new_field_name" attribute (#2794)

    • Items can be excluded from the generated bindings using uniffi.toml.

    • Added mutable_records configuration option to allow specific records to remain mutable even when generate_immutable_records is enabled (Kotlin and Swift).

    • Kotlin objects now have an uniffiIsDestroyed property that returns true if the Rust reference no longer exists (#2825)

    • Updated askama version to 0.15.6

    • Custom Types can have docstrings in some languages (#2853)

    • Ruby: Expose standard Rust traits for generated ruby code (#2883)

    • Ruby: Add support for sync foreign traits (#2916)

    • Ruby: Add async support (#2923)

    • Added zero-copy transfer of &[u8] / [ByRef] bytes arguments from foreign code to Rust. Kotlin (java.nio.ByteBuffer, must be direct), Swift (Data), and Python (bytes-like, buffer protocol) pass byte buffers as pointer + length (ForeignBytes) rather than copying through RustBuffer. Not yet supported on Ruby, and not yet supported in async functions on any language (#2878).

    • #[uniffi::export(async_runtime = "tokio")] can now be applied to trait exports, wrapping each method's FFI scaffolding future in async_compat::Compat the same way it does for inherent impls and free functions (#2899).

    • Added support for using HashSet with proc-macros

    • Allow literal number suffix with derive(uniffi::Enum)(#2926)

    All changes in v0.32.0.

    Open source →
  2. 0.31.2 17 Jun 2026
    Release notes

    What's Fixed

    • Kotlin: Fixed JNA direct-mapped u8/u16 return values by widening the internal return carrier to Int, which avoids signedness mismatches during checksum validation and other direct-return paths on Android ARM32. (#2897)
    • Kotlin: Fix async functions that return an external/RustBuffer type
    • Swift: Fixed FfiConverterString silently stripping a leading U+FEFF byte order mark from Rust strings.
    • Swift: Prevent strict concurrency warning with callback interface tables

    All changes in v0.31.2.

    Open source →
  3. 0.31.1 13 Apr 2026
    Release notes

    Changelog update for 0.31.1

    Open source →
    Release notes

    What's Fixed

    • Swift: Fixed iOS crash when address sanitizer is enabled #2821
    • Swift: Fixed memory link in async code #2854

    All changes in v0.31.1.

    Open source →
  4. 0.31.0 14 Jan 2026
    Release notes

    chore: Release uniffi version 0.31.0

    Open source →
    Release notes

    ⚠️ Breaking Changes ⚠️

    • The uniffi-bindgen command no longer accepts the --lib-file argument. Instead, pass the library directly without a UDL file.
    • Removed the [Swift|Kotlin|Python|Ruby]BindingGenerator types. Use uniffi::generate instead to generate these bindings.

    What's Deprecated?

    • BindgenCrateConfigSupplier. Use the new BindgenPaths type instead.

    What's New?

    • Added the uniffi::generate function. This implements the uniffi-bindgen generate command and allows it to be run programmatically.
    • The --library argument of uniffi-bindgen is deprecated and no longer has an effect. uniffi-bindgen will now auto-detect when the source path is a library rather than a UDL file.
    • All builtin bindings support renaming almost all of the interface (types, args, items, variants, etc) via TOML definitions - see the docs. (#2715)
    • Support for methods on records and enums (#2706, #2724, #2739).
    • Added the BindgenPaths type, which is the new way to find UDL and TOML data.
    • Enum variants can now be renamed with the proc-macro name = "NewVariantName" attribute (#2783)
    • It's now possible to build a uniffi-bindgen that doesn't depend on cargo-metadata (#2746)
    • MSR is now 1.87, our CI runs against 1.90.

    What's Fixed

    • Kotlin: Rust enums with nested payload types are generated using the inner type’s fully qualified name, avoiding naming conflicts and allowing payloads to reuse the variant name (#2698).
    • Kotlin: Enums and errors now support exporting trait methods (Display, Debug, Eq, Hash, Ord) via toString(), equals(), hashCode(), and compareTo() implementations. Flat enums only support exporting Display. (#2700).
    • Kotlin: Initialization functions now have a stable ordering (#2718)
    • Prevented a potential segfault when completing foreign futures (#2733)
    • Swift: exporting Eq, Cmp etc would generate invalid code if the Rust name had unusual captialization (#2707).
    • Fix an issue when an impl block has only async constructors (#2778)
    • Fix issues parsing some #[doc(...)] attributes in exported blocks (#2777)
    • Fix extracting metadata from multi-arch binary files (#2750)
    • Python: improve generated code for __eq__ (#2741)

    ⚠️ Breaking Changes ⚠️

    • Method checksums no longer include the self type. This shouldn't affect normal use. However checksum comparisons will fail if bindings built with 0.30.x and the Rust code is built with 0.31.x, or vice-versa.

    ⚠️ Breaking Changes for external bindings authors ⚠️

    • The module_path field now stores full module paths rather than crate names only. External bindings authors will probably need to make some minor changes to work with this. See https://github.com/mozilla/uniffi-rs/pull/2695/ for examples.

    All changes in v0.31.0.

    Open source →
  5. 0.30.0 08 Oct 2025
    Release notes

    chore: Release uniffi version 0.30.0

    Open source →
    Release notes

    ⚠️ Breaking Changes ⚠️

    • UDL-based trait interfaces must now be wrapped with the #[uniffi::trait_interface] attribute.
    • Python: Trait interface implementations must now inherit from the trait base class. This will look like class PyTraitName(RustTraitName):

    What's new?

    • All user-defined types can now be renamed with the proc-macro name = "NewName" attribute (like already supported for methods and constructors) (#2661)
    • Enums and Records support exporting uniffi traits (ie, Display, Hash, Eq etc) (#2555)
    • Support for exporting the Ord trait, allowing objects to be ordered by Rust (#2583).
    • #[uniffi(default)] literals are now optional - eg, #[uniffi(default)] and #[uniffi(default = 0)] are equivalent. Similarly for args; #[uniffi::export(default(arg_name))]. When no literal is specifed, named types (objects, records, etc) can be used as long as they have suitable default values. (#2543). Custom types too (#2603)
    • Custom enum and object types can be used as error type (#2658)
    • Objects can implement external traits (#2430)
    • Fix for external errors when error only used externally (#2641)
    • Kotlin:
      • Switch to JNA direct mapping (#2229)
      • Support throwing external error (#2629)
      • The NoPointer placeholder object used to create fake interface instances has been renamed to NoHandle
    • Python:
      • Improved how default values are handled in function signatures etc and more canonical use of Python dataclasses, all towards making mypy happier (#2552)
      • Methods now have typing annotations for return values (#2625)
      • Fix relative imports (#2657)
      • Fix shadowing param names with internal variables in Python (#2628/#2645)
      • Don't allow objects to be passed as arguments when traits are expected (#2649)
    • Swift:
      • All object protocol conformances are public (#2671)
      • Initialization functions now have a stable ordering when using external types. This makes the generated source files deterministic.

    ⚠️ Breaking Changes for external bindings authors ⚠️

    • uniffi_bindgen::backend has been removed.
    • #[uniffi(default)] changes how defaults are represented.
    • FfiType::RustArcPtr has been removed and the FFI type for objects/interfaces is now a u64. Bindings authors will need to update their code to reflect this:
      • Lowering/lifting now uses u64 values
      • The free function inputs a u64 handle rather than a raw pointer
      • The clone function inputs and returns a u64 handle rather than a raw pointer
    • Enums and Records can have methods, so the Method now carries self_type instead of the object name. In the templates, for Callable.takes_self() is replaced with Callable.self_type().
    • Trait / Callback interface changes
      • VTable fields are now: free, clone, followed by a field for each interface method. Note That free is now at the start of the vtable rather than the end.
      • Trait interface changes:
        • Foreign handles must always have the lowest bit set
        • Both Rust and foreign handles can now be passed across the FFI. When Lifting/lowering trait interface handles, check if the handle was generated from Rust or the foreign side.
      • See https://github.com/mozilla/uniffi-rs/pulls/2586 examples of how the builtin bindings here changed.

    All changes in v0.30.0.

    Open source →
  6. 0.29.5 14 Nov 2025

    Nothing published for this version

  7. 0.29.4 24 Jul 2025
    Release notes
    • Fixed a bug where objects with alignment >= 32 could be freed to early (https://github.com/mozilla/uniffi-rs/issues/2600)

    All changes in v0.29.4.

    Open source →
  8. 0.29.3 06 Jun 2025
    Release notes

    chore: Release uniffi version 0.29.3

    Open source →
    Release notes

    What's new?

    • HashMaps in UDL now support a default value with an empty map (#2539).

    All changes in v0.29.3.

    Open source →
  9. 0.29.2 05 May 2025
    Release notes

    What's fixed?

    • Allow uniffi_reexport_scaffolding! macro to work in Rust 2024 (#2476)

    • Python: fix issues with unusual name capitalization, (#2464)

    • Swift bindings can now generate automatic conformance to the CaseIterable protocol for simple enums and errors using generate_case_iterable_conformance = true in the configuration.

    • Swift bindings can now generate automatic conformance to the Codable protocol for records, enums and errors using generate_codable_conformance = true in the configuration. Be aware that serialization in Swift may lead to different and incompatible results compared to serialization in Rust.

    All changes in v0.29.2.

    ⚠️ Breaking Changes for external bindings authors ⚠️

    • Some async-related names have changed. Bindings authors may need to update their code to reflect the new names. This is a name-change only -- the FFI and semantics are still the same.

      • UniffiForeignFutureFree is now UniffiForeignFutureDroppedCallback
      • UniffiForeignFuture is UniffiForeignFutureDroppedCallbackStruct.
      • RustFuturePoll::MaybeReady is now RustFuturePoll::Wake.
    Open source →
  10. 0.29.1 18 Mar 2025
    Release notes

    What's fixed?

    • Bindings support lift and lower for CustomTypes in uniffi.toml to match the docs (#2438)

    • Python: fix using Vecs and other composite types in tuple enums (#2445)

    • Kotlin: fix interfaces in sequences and records being not disposed (#2479)

    What's changed?

    • Rust 2024 edition is supported, msrv is 1.82.0

    • The uniffi-bindgen CLI support no longer brings in the clap/color feature, reducing dependencies (#2435)

    • Protocols generated for Swift now conform to the Sendable protocol. This means that UniFFI traits will too, but it also means foreign implemented traits also must when Swift 6 conformance is enabled. See the Swift section of the manual for more. (#2450)

    • You can now optionally specify extra frameworks like CoreBluetooth or CoreFoundation when generating a modulemap file for an xcframework.

    All changes in v0.29.1.

    Open source →
  11. 0.29.0 06 Feb 2025
    Release notes

    ⚠️ Breaking Changes ⚠️

    We've made a number of breaking changes to fix long standing paper-cuts with UniFFI in multi-crate and procmacro+udl environments.

    See the detailed upgrade notes

    While no changes are required to foreign code, we apologize for the inconvenience!

    You are impacted if you use UniffiCustomTypeConverter to implement "Custom types", or use UDL with types from more than one crate.

    • UniffiCustomTypeConverter has been removed, you must now use the custom_type! macro instead.

    • The UDL syntax for external types has changed. typedef extern MyEnum; has been replaced with typedef enum MyEnum;. [Custom] and [External] are the only supported attributes for a typedef.

    • "remote" types (where UDL can re-export a type defined in a non-UniFFI crate - eg, log::Level) must now use a [Remote] attribute.

    • Various use_udl_*/use_remote_type etc macros have been removed.

    Detailed upgrade notes

    • uniffi::generate_component_scaffolding has been removed. It's almost certainly unused as it is behind the wrong feature and undocumented. uniffi::generate_scaffolding does exacly the same thing and is correctly behind the build feature.

    What's new?

    • Kotlin and Swift follow Python: Proc-macros exporting an impl Trait for Struct block now has a class inheritance hierarcy to reflect that. #2297, #2363

    • External types work much better, particularly between UDL and proc-macros. (Kotlin external errors do not work - #2392).

    • Swift interfaces are marked as Sendable (#2318)

    • Removed the log dependency and logging statements about FFI calls. These were not really useful to consumers and could have high overhead when lots of FFI calls are made. Instead, the ffi-trace feature can be used to get tracing-style printouts about the FFI.

    • External errors work for Swift and Python. Kotlin does not work - see #2392.

    • Added disable_java_cleaner option for kotlin to allow for Java 8 compatible code

    • Proc-macros now allow Enums to hold objects (#1372)

    • Swift and Kotlin make it possible to opt-out of the runtime checksum integrity tests done as the library is initialized. Opting out will shoot yourself in the foot if you mixup your build pipeline in any way, but might speed the initialization. (Python apparently hasn't made these checks for some time, so no changes there!)

    What's changed?

    • Switching jinja template engine from askama to rinja.

    • For wasm32 build targets, Futures do not have to be Send (#2418), making them compatible with wasm-bindgen Futures.

    ⚠️ Breaking Changes for external bindings authors ⚠️

    • Added the FfiType::MutReference variant.

    • Callable trait has changed, return_type and throws_type are now references.

    • Type::External has been removed. Binding authors must now check the type is local themselves before deciding to treat it as a local or external type.

      To get a feel for the impact on the bindings, see where we first did this for custom types, and where we then stopped using it entirely

    All changes in v0.29.0.

    Open source →
  12. 0.28.3 14 Nov 2024
    Release notes

    What's fixed?

    • Fixed bug in metadata extraction with large ELF files.

    All changes in v0.28.3.

    Open source →
  13. 0.28.2 08 Oct 2024
    Release notes

    What's new?

    • Added the uniffi-bindgen-swift binary. It works like uniffi-bindgen but with additional Swift-specific features. See https://mozilla.github.io/uniffi-rs/latest/swift/uniffi-bindgen-swift.html for details.

    • Removed the old and outdated diplomat comparison doc

    • Proc-macros recognise when you are exporting an impl Trait for Struct block. Python supports this by generating an inheritance hierarcy to reflect that. #2204

    What's fixed?

    • uniffi.toml of crates without a lib type where ignored in 0.28.1
    • Python: Fixed a bug when enum/error names were not proper camel case (HTMLError instead of HtmlError).
    • Python: Fixed the class hierarcy generated for traits ((#2264)[https://github.com/mozilla/uniffi-rs/issues/2264])

    All changes in v0.28.2.

    Open source →
  14. 0.28.1 13 Aug 2024
    Release notes

    What's new?

    • Lift errors will not cause an abort when panic=abort is set.
    • Added the cargo_metadata feature, which is on by default. In some cases, this can be disabled for better compatibility with projects that don't use cargo.
    • A new bindgen command line option --metadata-no-deps is available to avoid processing cargo_metadata for all dependencies.
    • In UDL it's now possible (and preferred) to remove the [Rust=] attribute and use a plain-old typedef. See the manual page for this.

    What's changed?

    • Kotlin will use the more efficient Enum.entries property instead of Enum.values() when possible

    All changes in v0.28.1.

    Open source →
  15. 0.28.0 11 Jun 2024
    Release notes

    What's new?

    • Objects error types can now be as Result<> error type without wrapping them in Arc<>.

    • Swift errors now provide localizedDescription (#2116)

    • Procmacros support tuple-errors (ie, enums used as errors can be tuple-enums.)

    What's fixed?

    • Fixed a problem with procmacro defined errors when the error was not used as an Err result in the namespace (#2108)

    • Custom Type names are now treated as type names by all bindings. This means if they will work if they happen to be keywords in the language. There's a very small risk of this being a breaking change if you used a type name which did not already start with a capital letter, but this changes makes all type naming consistent. (#2073)

    • Macros uniffi::method and uniffi::constructor can now be used with cfg_attr. (#2113)

    • Python: Fix custom types generating invalid code when there are forward references. (#2067)

    What's changed?

    • The internal bindings generation has changed to make it friendlier for external language bindings. However, this a breaking change for these bindings. No consumers of any languages are impacted, only the maintainers of these language bindings. (#2066), (#2094)

    • The async runtime can be specified for constructors/methods, this will override the runtime specified at the impl block level.

    All changes in v0.28.0.

    Open source →
  16. 0.27.3 03 Jun 2024
    Release notes
    • Removed dependencies on unicode-linebreak and unicode-width. They were being pulled in a sub-dependencies for the textwrap crate, but weren't really useful.

    All changes in v0.27.3.

    Open source →
  17. 0.27.2 15 May 2024
    Release notes

    What's new?

    • Added the scaffolding-ffi-buffer-fns feature. When enabled, UniFFI will generate an alternate FFI layer that can simplify the foreign bindings code. It's currently being tested out for the gecko-js external binding, but other external bindings may also find it useful.

    What's changed?

    • Removed the dependency on the `oneshot' crate (https://github.com/mozilla/uniffi-rs/issues/1736)

    All changes in v0.27.2.

    Open source →
  18. 0.27.1 03 Apr 2024
    Release notes

    All changes in v0.27.1.

    What's fixed?

    • Fixed a regression in 0.27.0 which broke throwing constructors (#2061).

    • Fixed a RustBuffer memory leak (#2056)

    Open source →
  19. 0.27.0 26 Mar 2024
    Release notes

    What's new?

    • Constructors can be async. Alternate constructors work in Python, Kotlin and Swift; only Swift supports primary constructors.

    • Enums created with proc macros can now produce literals for variants in Kotlin and Swift. See the section on enum proc-macros for more information.

    • Objects can be errors - anywhere you can specify an enum error object you can specify an Arc<Object> - see the manual.

    • Functions, methods and constructors exported by procmacros can be renamed for the forgeign bindings. See the procmaco manual section.

    • Trait interfaces can now have async functions, both Rust and foreign-implemented. See the futures manual section for details.

    • Procmacros support tuple-enums.

    • RustBuffer was changed to use u64 fields. This eliminates panics when the capacity of the vec exceeds i32::MAX. This can happen with the current Vec implementation when String/Vec sizes approach i32::MAX but don't exceed it.

    • Proc-macro function/method arguments can now have defaults

    • Proc-macro record defaults now support empty vecs and Some values.

    • Swift: Records and Enums without object references can now be made Sendable Swift, by opting in to new Configuration experimental_sendable_value_types in uniffi.toml.

    What's fixed?

    • Fixed a memory leak in callback interface handling.

    ⚠️ Breaking Changes ⚠️

    • Python: Force named parameters for struct constructors (#1840)
    • Ruby: Force named parameters for struct constructors (#1840)

    ⚠️ Breaking Changes for external bindings authors ⚠️

    • The callback interface code was reworked to use vtables rather than a single callback method. See https://github.com/mozilla/uniffi-rs/pull/1818 for details and how the other bindings were updated.
    • Added the FfiType::Handle variant. This is a general-purpose opaque handle type used for passing objects cross the FFI. This type is always 64 bits and replaces the various older handle types including:
      • Rust futures (replacing FfiType::RustFutureHandle which was removed)
      • Rust future continuation data (Replacing FfiType::RustFutureContinuationData which was moved).
    • RustBuffer.len and RustBuffer.capacity are now u64 rather than i32.

    All changes in v0.27.0.

    Open source →
  20. 0.26.1 24 Jan 2024
    Release notes

    What's fixed?

    • The weedle2 version is now 5.0.0 rather than 4.0.1. 4.0.1 was yanked because it contained a breaking change.
    • Fixed a memory leak in callback interface handling.

    All changes in v0.26.1.

    Open source →
  21. 0.26.0 23 Jan 2024 withdrawn
    Release notes

    What's changed?

    • The rust_future_continuation_callback_set FFI function was removed. rust_future_poll now inputs the callback pointer. External bindings authors will need to update their code.

    What's new?

    • Rust traits Display, Hash and Eq exposed to Kotlin and Swift #1817
    • Foreign types can now implement trait interfaces #1791 and the documentation
      • UDL: use the [WithForeign] attribute
      • proc-macros: use the #[uniffi::export(with_foreign)] attribute
    • Generated Python code is able to specify a package name for the module #1784
    • UDL can describe async function #1834
    • UDL files can reference types defined in procmacros in this crate - see the external types docs and also external trait interfaces #1831
    • Add support for docstrings via procmacros #1862 and in UDL
    • Objects can now be returned from functions/constructors/methods without wrapping them in an Arc<>.

    All changes in v0.26.0.

    Open source →
  22. 0.25.3 07 Dec 2023
    Release notes

    All changes in v0.25.3.

    • Switched to a patched version of oneshot so that consumers who use cargo vendor don't vendor loom and it's sub-dependencies like windows
    Open source →
  23. 0.25.2 20 Nov 2023
    Release notes

    What's fixed?

    • Fixed regression in the name of error enums in Kotlin #1842
    • Fix regression when error types are in dicts etc #1847

    All changes in v0.25.2.

    Open source →
  24. 0.25.1 09 Nov 2023
    Release notes

    All changes in v0.25.1.

    What's fixed?

    • Fixed several bugs with async functions were defined in multiple crates that get built together.
    Open source →
  25. 0.25.0 18 Oct 2023
    Release notes

    All changes in v0.25.0.

    What's new

    • Proc-macros can now expose standard Rust traits (eg, Display, Eq, etc)

    • Fixed issues when trying to combine UDL and procmacros in the same crate when the "namespace" is different from the crate name. This meant that the "ffi namespace" has changed to consistently be the crate name, rather than either the crate name or the namespace name depending on whether the item was declared via a procmacro or UDL. This should be invisible in most cases, but custom build environments might require some changes. Specifically:

      • uniffi::generate_scaffolding(udl_path) now uses the udl_path to locate the corresponding Cargo.toml, which is parsed to determine the crate name (ie, the name under the [lib] entry). If your environment is such that Cargo.toml can't be located or parsed, you should instead use uniffi::generate_scaffolding_for_crate(udl_path, crate_name).
      • Similarly, when executing uniffi_bindgen from the command-line to generate bindings and when not using "library mode", Cargo.toml will be located and parsed to determine the crate name. Specifying --crate-name on the command-line can be used to avoid this and use the specified value.
    • Crates can now use proc-macros without UDL files to export their interface. See the "Procedural Macros: Attributes and Derives" manual section for details.

    • Custom Types are now supported for proc-macros, including a very low-friction way of exposing types implementing the new-type idiom.

    • Proc-macros: Added support for ByRef arguments

    • Proc-macros: Implemented custom type conversion error handling (https://mozilla.github.io/uniffi-rs/udl/custom_types.html#error-handling-during-conversion)

    • Error types must now implement Error + Send + Sync + 'static.

    • Proc-macros: The handle_unknown_callback_error attribute is no longer needed for callback interface errors

    What's Fixed

    • Updated the async functionality to correctly handle cancellation (#1669)
    • Kotlin: Fixed low-level issue with exported async APIs
    • Kotlin: Fixed empty records being exported as empty data classes in Kotlin. A class with a proper equals function should be used instead.

    What's changed?

    • Implementing From<uniffi::UnexpectedUniFFICallbackError is now optional for callback interface error types. If the error type implements that, things will continue to work as before. If not, then any unexpected callback error will result in a Rust panic.
    Open source →
  26. 0.24.3 01 Aug 2023
    Release notes

    All changes in v0.24.3.

    What's changed?

    • uniffi_macros: Force-include the Cargo.toml to read (#1683)
    Open source →
  27. 0.24.2 25 Jul 2023
    Release notes

    All changes in v0.24.2.

    What's changed?

    • Inline the metadata module in uniffi_meta to avoid a dependency of uniffi_core to avoid hitting an upstream bug during link time (#1666)
    Open source →
  28. 0.24.1 23 Jun 2023
    Release notes

    All changes in v0.24.1.

    What's changed

    • Python: remove unused import (and unbreak Python 3.6 compatibility) (#1618)
    • Python: Delay contract checks until after all functions are defined to avoid wrong ABI use (#1619)
    • Kotlin: Fix error handling in async functions (#1614)
    Open source →
  29. 0.24.0 21 Jun 2023
    Release notes

    All changes in v0.24.0.

    ⚠️ Breaking Changes ⚠️

    • ABI: Implemented a new callback-interface ABI that significantly improves performance on Python and Kotlin.
      • UniFFI users will automatically get the benefits of this without any code changes.
      • External bindings authors will need to update their bindings code. Please see Guidance for external bindings below for details.
    • ABI: Changed API checksum handling. This affects external bindings authors who will need to update their code to work with the new system. See PR #1469 for details.
    • Removed the long deprecated ThreadSafe attribute.
    • External types now require a valid crate name. Before the docs said it must be a crate name, but any string could be used as long as it was consistent with the external type map in uniffi.toml.
    • External types must be available in the Rust crate root.
    • External bindings: The ExternalBindingsConfig trait was replaced with BindingsConfig. External bindings implementations will need to make minor changes to implement the new trait instead.
    • Removed support for the --config flag when running the scaffolding command. This flag has never an effect, because there was no scaffolding configuration options.
    • Python bindings are now more strict with their types. You can no longer pass strings to methods taking integers or floats, or floats to methods taking integers.

    What's changed

    • Added "library mode" bindings generation using generate --library [path-to-cdylib]. This mode simplifies bindings generation, especially when you have dependencies between multiple UniFFIed crates. See the tutorial for a description.
    • The include_scaffolding!() macro must now either be called from your crate root or you must have use the_mod_that_calls_include_scaffolding::* in your crate root. This was always the expectation, but wasn't required before. This will now start failing with errors that say crate::UniFfiTag does not exist.
    • proc-macros now work with many more types including type aliases, type paths, etc.
    • The uniffi_types module is no longer needed when using proc-macros.
    • Traits can be exposed as a UniFFI interface by using a [Trait] attribute in the UDL. See the documentation.
    • The bytes primitive type was added, it represents an array of bytes. It maps to ByteArray in Kotlin, bytes in Python, String with Encoding::BINARY in Ruby and Data in Swift. (#1543)
    • Shortened str() representations of errors in Python to align with other exceptions in Python. Use repr() or the {!r} format to get the old representation back (#1556)
    • Methods implemented by standard Rust traits, such as Debug, Display, Eq and Hash can now be exposed over the FFI and bindings may implement special methods for them. See the documentation.
    • Added support for async/futures (#1409, #1515)
    • Added constructor support to proc-macro frontend (#1518)
    • Added support for field defaults to proc-macro frontend (#1560)
    • Implemented proc-macro callback interface support (#1573)
    • Python bindings now generate type stubs for all functions and types (#1506)
    • Enforced checks for integer overflows in Python bindings (#1546)
    • No more implicit conversion to integers/floats in Python (#1554)
    • Enforced checks for integer overflows in Ruby bindings (#1572)
    • Only UTF-8 valid strings are passed from Ruby to Rust (#1595)
    • No more implicit conversion to integers/floats in Ruby (#1596)
    • Updated Rust dependencies (#1495, #1583, #1569)
    • Added type checking to strings/bytes for Python/Ruby (#1597)
    • Implemented proc-macro external type support. This allows proc-macros to use types defined in UDL files from other crates, #1600

    Guidance for external bindings

    There are many breaking changes for external bindings - we hope there will be fewer in later releases, but we are laying the groundwork for some nice improvements. Significant patches to UniFFI's builtin bindings which you will need to port include:

    Open source →
  30. 0.23.0 27 Jan 2023
    Release notes

    Migrating to UniFFI 0.23+

    All changes in v0.23.0.

    ⚠️ Breaking Changes ⚠️

    • uniffi_bindgen no longer provides a standalone binary. Having a standalone binary resulted in version mismatches when the uniffi version specified in Cargo.toml didn't match the uniffi_bindgen version installed on the system. Read The foreign language bindings section of the manual for how to set up a uniffi-bindgen binary that's local to your workspace.
    • uniffi_bindgen: Removed the run_main function. It's moved to uniffi::uniffi_bindgen_main and now unconditionally succeeds rather than return a Result<()>.

    What's changed

    • The UniFFI crate organization has been significantly reworked:
      • Projects that use UniFFI for binding/scaffolding generation now only need to depend on the uniffi crate and no longer need to depend on uniffi_bindgen, uniffi_build, etc.
      • The version numbers for each crate will no longer by kept in sync after this release. In particular uniffi will have breaking changes less often than uniffi_bindgen and other crates. This means that UniFFI consumers that specify their versions like uniffi = "0.23" will not need to bump their uniffi version as often as before.
    • Callback interface method calls are no longer logged (#1439)
    Open source →
  31. 0.22.0 16 Dec 2022
    Release notes

    All changes in v0.22.0.

    ⚠️ Breaking Changes ⚠️

    • uniffi_bindgen: Renamed FFIArgument, FFIFunction and FFIType to FfiArgument, FfiFunction and FfiType

    What's changed

    • Added support for Swift external types
    • Fix whitespace issues in scaffolding code breaking some versions of rustfmt
    • Fix ruby time support
    • proc-macro
      • Document (experimental) proc-macro support
      • Support fallible functions
      • Add Enum derive macro
      • Add Error derive macro
    Open source →
  32. 0.21.1 16 Dec 2022
    Release notes

    All changes in v0.21.1.

    What's changed

    • Replace checksum mechanism for function naming to give consistent results, independent of the target's endianness and bit width. This should have no visible effect on the outside.
    Open source →
  33. 0.21.0 14 Oct 2022
    Release notes

    All changes in v0.21.0.

    ⚠️ Breaking Changes ⚠️

    • uniffi_bindgen: Renamed the throws() method of Function, Method, and Constructor to throws_str(). Added a new throws() method that returns a boolean.

    What's changed

    • Added support for exceptions in callback interface methods.
    • Improved error stringifying on Kotlin and Ruby (the message and to_s methods respectively).
    Open source →
  34. 0.20.0 13 Sep 2022
    Release notes

    All changes in v0.20.0.

    ⚠️ Breaking Changes ⚠️

    • Renamed the uniffi_bindgen cydlib argument to lib_file, since it can also accept static libraries

    What's changed

    • The guess_crate_root function is now public

    What's changed

    • The UDL can contain identifiers which are also keywords in Swift, except in namespace functions.
    Open source →
  35. 0.19.6 31 Aug 2022
    Release notes

    All changes in v0.19.6.

    • Fix callback interface init signature in Rust scaffolding
    • Drop unused dependencies
    • Update to MSRV 1.61.0
    Open source →
  36. 0.19.5 29 Aug 2022
    Release notes

    All changes in v0.19.5.

    • Fixed a small bug in the 0.19.4 release, where the extraneous r# was present in the HashMap generated scaffolding.
    Open source →
  37. 0.19.4 29 Aug 2022
    Release notes

    All changes in v0.19.4.

    • Implement Timestamp and Duration types in Ruby backend.
    • Fixed in a bug where callback interfaces with arguments that include underscores do not get converted to camelCase on Swift.
    Open source →
  38. 0.19.3 08 Jul 2022
    Release notes Open source →
  39. 0.19.2 28 Jun 2022
    Release notes

    All changes in v0.19.2.

    • Fixed sccache issue with the askama.toml config file.
    Open source →
  40. 0.19.1 16 Jun 2022
    Release notes

    All changes in v0.19.1.

    What's Changed

    • Fixed the dependency from uniffi_build -> uniffi_bindgen
    Open source →
  41. 0.19.0 16 Jun 2022
    Release notes

    All changes in v0.19.0.

    ⚠️ Breaking Changes ⚠️

    • breaking for external binding generators, the FFIType::RustArcPtr now includes an inner String. The string represents the name of the object the RustArcPtr was derived from.
    • Kotlin exception names are now formatted as strict UpperCamelCase. Most names shouldn't change, but names that use one word with all caps will be affected (for example URL -> Url, JSONException -> JsonException)

    What's changed

    • The UDL can contain identifiers which are also keywords in Rust, Python or Kotlin.
    Open source →
  42. 0.18.0 05 May 2022
    Release notes

    All changes in v0.18.0.

    ⚠️ Breaking Changes ⚠️

    • When custom types are used in function/method signatures UniFFI will now use the UDL name for that type and create a typealias to the concrete type. In the URL example, this means the type will be now appear on Kotlin as Url rather than URL. Any existing code should continue to work because of the typealias, but this might affect your generated documentation and/or code completion.
    • For Python libraries the native library is now loaded from an absolute path. The shared library (*.dll on Windows, *.dylib on macOS and .so on other platforms) must be placed next to the Python wrapper code.

    What's changed

    • Allow record types with arbitrary key types
      • Record types can now contain any hashable type as its key. This is implemented for Kotlin, Python and Swift
    • Python
      • Added support for default values in dictionaries
      • Generated Python code is now annotated to avoid mypy type checking
    • Kotlin
      • Added external type support
    • Swift
      • Fix test helper code to work with Swift 5.6
    Open source →
  43. 0.17.0 03 Feb 2022
    Release notes

    All changes in v0.17.0.

    ⚠️ Breaking Changes ⚠️

    • Wrapped types have been renamed custom types.
      • The UDL attribute is now [Custom] instead of [Wrapped]
      • The trait name has been renamed to UniffiCustomTypeConverter from UniffiCustomTypeWrapper
      • The method names of that trait have been renamed to into_custom() / from_custom() instead of wrap() and unwrap()
      • The associated type has been renamed to Builtin instead of Wrapped

    What's Changed

    • Custom types (formerly wrapped) now can be configured on the bindings side as well as the scaffolding side. See the "Custom Types" section of the manual for details.
    • Kotlin now prefixes more local UniFFI variables with the _ char to avoid conflicts with user-defined names.
    • Updated Kotlin to use the FfiConverter pattern (#1144)
    • Documentation updates: Added a doc comparing UniFFI to Diplomat. Added a README note describing the foreign languages we currently support.
    • Fixed RustCallStatus.__str__ implementation on Python
    • Fixed the version numbers in the CHANGELOG compare links.
    Open source →
  44. 0.16.0 15 Dec 2021
    Release notes

    All changes in v0.16.0

    ⚠️ Breaking Changes ⚠️

    What's Changed

    • Python: Added Callback Interface support
    • Swift bindings can now omit argument labels in generated functions using omit_argument_labels = true in the configuration.
    Open source →
  45. 0.15.2 24 Nov 2021
    Release notes

    What's Changed

    • Kotlin now generates valid code for optional timestamps/durations.

    All changes in v0.15.2.

    Open source →
  46. 0.15.1 23 Nov 2021
    Release notes

    (Note that v0.15.0 was accidentally published, then yanked. v0.15.1 should be used instead)

    ⚠️ Breaking Changes ⚠️

    • Previously, an interface which didn't declare a constructor got a default one anyway, making it impossible to decline to provide one. This is no longer true, so if your interface wants a constructor, you must add one explicitly.

    What's Changed

    • Kotlin and Swift, like Python, now support simple "wrapped" types.

    • The Python backend has been refactored to more closely match the other backends, but this should be invisible to consumers.

    • The Swift and Kotlin backends have had minor tweaks.

    • The kotlin backend now explicitly checks for a null pointer in cases where it should be impossible to help us diagnose issues seen in the wild. See #1108.

    All changes in v0.15.1.

    Open source →
  47. 0.15.0 22 Nov 2021 withdrawn

    Nothing published for this version

  48. 0.14.1 27 Oct 2021
    Release notes

    ⚠️ Breaking Changes ⚠️

    • The build_foreign_language_testcases! macro now takes an array of UDL files as the first argument.

    What's Changed

    • Swift: Added Callback Interface support
    • Swift: Refactored codegen to better match Kotlin / Unit of Code
    • Kotlin: Added some defensive programming around RustBufferBuilder.discard()

    All changes in v0.14.1.

    Open source →
  49. 0.14.0 18 Aug 2021
    Release notes

    All changes in v0.14.0.

    ⚠️ Breaking Changes ⚠️

    • The Rust implementations of all dictionary, enum or error types defined in UDL must be public. If you see errors like: private type <type-name> in public interface or similar, please declare the types as pub in your Rust code.

    • Errors declared using the [Error] enum syntax will now expose the error string from Rust to the foreign language bindings. This reverts an unintended change in behaviour from the v0.13 release which made the error message inaccessible.

    What's Changed

    • You can now use external types of various flavours - see the fine manual

    • An environment variable UNIFFI_TESTS_DISABLE_EXTENSIONS can disable foreign language bindings when running tests. See the contributing guide for more.

    Open source →
  50. 0.13.1 10 Aug 2021
    Release notes

    All changes in v0.13.1.

    What's Changed

    • Fixed an accidental regression in v0.13.0 where errors were no longer being coerced to the correct type via Into. If the UDL declares a [Throws=ExampleError] function or method, the underlying implementation can now return anything that is Into<ExampleError>, matching the implicit Into behavior of Rust's ? operator.
    • Fixed an accidental regression in v0.13.0 where the generated Rust scaffolding assumed that the HashMap type would be in scope. It now uses fully-qualified type names in order to be more robust.
    Open source →
  51. 0.13.0 09 Aug 2021
    Release notes

    All changes in v0.13.0.

    ⚠️ Breaking Changes ⚠️

    • UniFFI no longer has ffi-support as a dependency. This means it handles panic logging on its own. If you previously enabled the log_panics feature for ffi-support, now you should enable it for uniffi.
    • The Swift bindings now explicitly generate two separate Swift modules, one for the high-level Swift code and one for the low-level C FFI. This change is intended to simplify distribution of the bindings via Swift packages, but brings with it some changes to the generated file layout.
      • For an interface namespace "example", we now generate:
        • A bridged C module named "exampleFFI" containing the low-level C FFI, consisting of an exampleFFI.h file and matching exampleFFI.modulemap file. The name can be customized using the ffi_module_name config option.
        • A Swift module named "example" containing the high-level Swift bindings, which imports and uses the low-level C FFI. The name can be customized using the module_name config option.
    • Python timestamps will now be in UTC and timezone-aware rather than naive.
    • Kotlin exceptions names will now replace a trailing "Error" with "Exception" rather than appending the string (FooException instead of FooErrorException)
    • JNA 5.7 or greater is required for Kotlin consumers

    What's Changed

    • Both python and ruby backends now handle U16 correctly.
    • Error variants can now contain named fields, similar to Enum variants
    • Replaced the ViaFfi trait with the FfiConverter trait. FfiConverter is a more flexible version of ViaFfi because it can convert any Rust type to/from an Ffi type, rather than only Self. This allows for using UniFFI with a type defined in an external crate.
    Open source →
  52. 0.12.0 14 Jun 2021
    Release notes

    All changes in v0.12.0.

    What's New

    • It is now possible to use Object instances as fields in Records or Enums, to pass them as arguments, and to return them from function and method calls. They should for the most part behave just like a host language object, and their lifecycle is managed transparently using Rust's Arc<T> type.
      • Reference cycles that include Rust objects will not be garbage collected; if you cannot avoid creating reference cycles you may need to use Rust's Weak<T> type to help break them.
      • In the Kotlin bindings, Object instances must be manually freed by calling their destroy() method or by using their .use block helper method. Records or Enums that contain an Object instance now also have a destroy() method and must be similarly disposed of after use.

    What's Changed

    • Kotlin objects now implement AutoCloseable by default; closing an object instance is equivalent to calling its destroy() method.
    Open source →
  53. 0.11.0 04 Jun 2021
    Release notes

    All changes in v0.11.0.

    ⚠️ Breaking Changes ⚠️

    • All interface implementations must now be Sync + Send, and Rust will give a compile-time error if they are not. This makes the [Threadsafe] annotation redundant, so it is now deprecated and will be removed in a future release. More details on the motivation for this change can be found in ADR-0004.

    What's Changed

    • Swift structs and Kotlin data classes generated from dictionary are now mutable by default:
      • Swift now uses var instead of let
      • Kotlin now uses var instead of val
    • Kotlin objects can now safely have their destroy() method or .use block execute concurrently with other method calls. It's recommended that you not do this, but if you accidentally do so, it will now work correctly rather than triggering a panic in the underlying Rust code.
    Open source →
  54. 0.10.0 26 May 2021
    Release notes

    All changes in v0.10.0.

    ⚠️ Breaking Changes ⚠️

    • Two new built-in datatypes have been added: the timestamp type for representing moments in time, and the duration type for representing a difference between two timestamps. These mirror the std::time::{SystemTime, Duration} types from Rust. Thanks to @npars for contributing this feature!
      • This is a breaking change as it may conflict with user-declared timestamp or duration types in existing .udl files.

    What's New

    • A new Ruby codegen backend has been added. You can now call uniffi-bindgen -l ruby to generate a Ruby module that wraps a UniFFI Rust component. Thanks to @saks for contributing this backend!
      • When running cargo test locally, you will need a recent version of Ruby and the ffi gem in order to successfully execute the Ruby backend tests.
    • Threadsafe Object methods can now use self: Arc<Self> as the method receiver in the underlying Rust code, in addition to the default self: &Self. To do so, annotate the method with [Self=ByArc] in the .udl file and update the corresponding Rust method signature to match. This will not change the generated foreign-language bindings in any way but may be useful for more explicit management of Object references in the Rust code.

    What's Changed

    • Kotlin: Fixed buggy codegen for optional primitive types like i32?; on earlier versions this would generate invalid Kotlin code which would fail to compile.
    Open source →
  55. 0.9.0 21 May 2021
    Release notes

    All changes in v0.9.0.

    ⚠️ Breaking Changes ⚠️

    • Support for non-[Threadsafe] interfaces has been deprecated. A future release will require that all interface implementations be Sync + Send, making the [Threadsafe] annotation redundant.

    What's Changed

    • Errors when parsing a .udl file are now marginally more useful (they're still not great, but they're better).
    • Generated code should now be deterministic between runs with the same input file and version of UniFFI. Previously, the generated code could depend on the iteration order of an internal hash table.
    • Swift: Generated Swift Enums now conform to Hashable by default.
    • Swift: There are now additional docs on how to consume the generated Swift bindings via XCode.
    Open source →
  56. 0.8.0 05 Mar 2021

    Nothing published for this version

  57. 0.7.2 25 Feb 2021

    Nothing published for this version

  58. 0.7.1 19 Feb 2021

    Nothing published for this version

  59. 0.7.0 25 Jan 2021

    Nothing published for this version

  60. 0.6.1 09 Dec 2020

    Nothing published for this version

Every package, every release, already written down.

The archive is open and free. Watching your own project is what we are building next.

Browse the archive